patch-2.4.23 linux-2.4.23/net/irda/irda_device.c
Next file: linux-2.4.23/net/irda/irias_object.c
Previous file: linux-2.4.23/net/irda/ircomm/ircomm_tty_ioctl.c
Back to the patch index
Back to the overall index
- Lines: 159
- Date:
2003-11-28 10:26:21.000000000 -0800
- Orig file:
linux-2.4.22/net/irda/irda_device.c
- Orig date:
2003-08-25 04:44:44.000000000 -0700
diff -urN linux-2.4.22/net/irda/irda_device.c linux-2.4.23/net/irda/irda_device.c
@@ -174,7 +174,7 @@
void irda_device_cleanup(void)
{
- IRDA_DEBUG(4, __FUNCTION__ "()\n");
+ IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
hashbin_delete(tasks, (FREE_FUNC) __irda_task_delete);
hashbin_delete(dongles, NULL);
@@ -190,7 +190,7 @@
{
struct irlap_cb *self;
- IRDA_DEBUG(4, __FUNCTION__ "(%s)\n", status ? "TRUE" : "FALSE");
+ IRDA_DEBUG(4, "%s(%s)\n", __FUNCTION__, status ? "TRUE" : "FALSE");
self = (struct irlap_cb *) dev->atalk_ptr;
@@ -215,11 +215,11 @@
struct if_irda_req req;
int ret;
- IRDA_DEBUG(2, __FUNCTION__ "()\n");
+ IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
if (!dev->do_ioctl) {
- ERROR(__FUNCTION__ "(), do_ioctl not impl. by "
- "device driver\n");
+ ERROR("%s(), do_ioctl not impl. by "
+ "device driver\n", __FUNCTION__);
return -1;
}
@@ -236,11 +236,11 @@
struct if_irda_req req;
int ret;
- IRDA_DEBUG(2, __FUNCTION__ "()\n");
+ IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
if (!dev->do_ioctl) {
- ERROR(__FUNCTION__ "(), do_ioctl not impl. by "
- "device driver\n");
+ ERROR("%s(), do_ioctl not impl. by "
+ "device driver\n", __FUNCTION__);
return -1;
}
@@ -262,11 +262,11 @@
struct if_irda_req req;
int ret;
- IRDA_DEBUG(2, __FUNCTION__ "()\n");
+ IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
if (!dev->do_ioctl) {
- ERROR(__FUNCTION__ "(), do_ioctl not impl. by "
- "device driver\n");
+ ERROR("%s(), do_ioctl not impl. by "
+ "device driver\n", __FUNCTION__);
return -1;
}
@@ -279,7 +279,7 @@
void irda_task_next_state(struct irda_task *task, IRDA_TASK_STATE state)
{
- IRDA_DEBUG(2, __FUNCTION__ "(), state = %s\n", task_state[state]);
+ IRDA_DEBUG(2, "%s(), state = %s\n", __FUNCTION__, task_state[state]);
task->state = state;
}
@@ -313,7 +313,7 @@
int count = 0;
int timeout;
- IRDA_DEBUG(2, __FUNCTION__ "()\n");
+ IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
ASSERT(task != NULL, return -1;);
ASSERT(task->magic == IRDA_TASK_MAGIC, return -1;);
@@ -322,14 +322,14 @@
do {
timeout = task->function(task);
if (count++ > 100) {
- ERROR(__FUNCTION__ "(), error in task handler!\n");
+ ERROR("%s(), error in task handler!\n", __FUNCTION__);
irda_task_delete(task);
return TRUE;
}
} while ((timeout == 0) && (task->state != IRDA_TASK_DONE));
if (timeout < 0) {
- ERROR(__FUNCTION__ "(), Error executing task!\n");
+ ERROR("%s(), Error executing task!\n", __FUNCTION__);
irda_task_delete(task);
return TRUE;
}
@@ -361,8 +361,7 @@
irda_task_timer_expired);
finished = FALSE;
} else {
- IRDA_DEBUG(0, __FUNCTION__
- "(), not finished, and no timeout!\n");
+ IRDA_DEBUG(0, "%s(), not finished, and no timeout!\n", __FUNCTION__);
finished = FALSE;
}
@@ -391,7 +390,7 @@
struct irda_task *task;
int ret;
- IRDA_DEBUG(2, __FUNCTION__ "()\n");
+ IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
task = kmalloc(sizeof(struct irda_task), GFP_ATOMIC);
if (!task)
@@ -428,7 +427,7 @@
{
struct irda_task *task;
- IRDA_DEBUG(2, __FUNCTION__ "()\n");
+ IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
task = (struct irda_task *) data;
@@ -547,7 +546,7 @@
{
/* Check if this dongle has been registred before */
if (hashbin_find(dongles, new->type, NULL)) {
- MESSAGE(__FUNCTION__ "(), Dongle already registered\n");
+ MESSAGE("%s(), Dongle already registered\n", __FUNCTION__);
return 0;
}
@@ -569,7 +568,7 @@
node = hashbin_remove(dongles, dongle->type, NULL);
if (!node) {
- ERROR(__FUNCTION__ "(), dongle not found!\n");
+ ERROR("%s(), dongle not found!\n", __FUNCTION__);
return;
}
}
@@ -586,11 +585,11 @@
struct if_irda_req req;
int ret;
- IRDA_DEBUG(0, __FUNCTION__ "()\n");
+ IRDA_DEBUG(0, "%s()\n", __FUNCTION__);
if (!dev->do_ioctl) {
- ERROR(__FUNCTION__ "(), set_raw_mode not impl. by "
- "device driver\n");
+ ERROR("%s(), set_raw_mode not impl. by "
+ "device driver\n", __FUNCTION__);
return -1;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)