From: Peter K. <pk...@us...> - 2001-06-05 09:19:35
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- hci.c 1.151 1.152=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Made hci_trig_send() a no-op in user mode. The diff of the modified file(s): --- hci.c 2001/05/30 10:32:07 1.151 +++ hci.c 2001/06/05 09:19:34 1.152 @@ -681,7 +681,7 @@ s32 hci_trig_send(void) { -=09 +#ifdef __KERNEL__ if (buf_count()) { #if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0) queue_task(&send_data_task, &tq_scheduler); @@ -693,6 +693,10 @@ } else { return FALSE; } +#else + /* FIXME? */ + return FALSE; +#endif } =20 void |