Messages in this thread Patch in this message |  | | | Date | Sat, 29 Oct 2005 12:02:00 +0100 | | From | Al Viro <> | | Subject | [PATCH] bluetooth hidp is broken on s390 |
| |
Bluetooth HIDP selects INPUT and it really needs it to be there - module depends on input core. And input core is never built on s390... Marked as broken on s390, for now; if somebody has better ideas, feel free to fix it and remove dependency...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> ---- diff -urN RC14-base/net/bluetooth/hidp/Kconfig current/net/bluetooth/hidp/Kconfig --- RC14-base/net/bluetooth/hidp/Kconfig 2005-06-17 15:48:29.000000000 -0400 +++ current/net/bluetooth/hidp/Kconfig 2005-10-29 06:14:28.000000000 -0400 @@ -1,6 +1,6 @@ config BT_HIDP tristate "HIDP protocol support" - depends on BT && BT_L2CAP + depends on BT && BT_L2CAP && (BROKEN || !S390) select INPUT help HIDP (Human Interface Device Protocol) is a transport layer - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |