Prev: [PATCH 01a/10] perf, trace: Fix !x86 build issue
Next: HID: Removed unused variable from hidraw_read
From: Jiri Kosina on 25 May 2010 03:50 On Wed, 19 May 2010, Stefan Achatz wrote: > Module roccat is a char device used to report special events of roccat > hardware to userland. I have now applied it. It would be also nice if you could provide a link to the userspace software taking care of these special events somewhere. Thanks, -- Jiri Kosina SUSE Labs, Novell Inc. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
From: Jiri Kosina on 25 May 2010 04:10
On Tue, 25 May 2010, Jiri Kosina wrote: > > Module roccat is a char device used to report special events of roccat > > hardware to userland. > > I have now applied it. Plus I had to apply the patch below on top of it. From: Jiri Kosina <jkosina(a)suse.cz> Subject: [PATCH] HID: roccat: fix build failure if built as module Fix build failure when roccat and roccat-kone are built as modules. Signed-off-by: Jiri Kosina <jkosina(a)suse.cz> --- drivers/hid/hid-roccat.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/hid/hid-roccat.h b/drivers/hid/hid-roccat.h index 40cca5b..d8aae0c 100644 --- a/drivers/hid/hid-roccat.h +++ b/drivers/hid/hid-roccat.h @@ -15,7 +15,7 @@ #include <linux/hid.h> #include <linux/types.h> -#ifdef CONFIG_HID_ROCCAT +#if defined(CONFIG_HID_ROCCAT) || defined (CONFIG_HID_ROCCAT_MODULE) int roccat_connect(struct hid_device *hid); void roccat_disconnect(int minor); int roccat_report_event(int minor, u8 const *data, int len); -- Jiri Kosina SUSE Labs, Novell Inc. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |