Staging: frontier: Make checkpatch.pl considerably happier with tranzport driver.

Previous thread: Staging: rt2870: Removal of kernel_thread() API by Linux Kernel Mailing List on Sunday, April 5, 2009 - 12:24 pm. (1 message)

Next thread: Staging: frontier: removed now unused frontier_compat.h file by Linux Kernel Mailing List on Sunday, April 5, 2009 - 12:25 pm. (1 message)
From: Linux Kernel Mailing List
Date: Sunday, April 5, 2009 - 12:25 pm

Gitweb:     http://git.kernel.org/linus/7c68d6b7171aa2f3d0c68b9ff54a2e1f0f0e228f
Commit:     7c68d6b7171aa2f3d0c68b9ff54a2e1f0f0e228f
Parent:     d44ca7af9e79abf4e80514583734cffed1117ee1
Author:     David Täht <d@teklibre.com>
AuthorDate: Tue Jan 20 08:33:20 2009 -0600
Committer:  Greg Kroah-Hartman <gregkh@suse.de>
CommitDate: Fri Apr 3 14:53:31 2009 -0700

    Staging: frontier: Make checkpatch.pl considerably happier with tranzport driver.
    
    Signed-off-by: David Täht <d@teklibre.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
 drivers/staging/frontier/tranzport.c |  729 +++++++++++++++++++---------------
 1 files changed, 414 insertions(+), 315 deletions(-)

diff --git a/drivers/staging/frontier/tranzport.c b/drivers/staging/frontier/tranzport.c
index 79abb6b..4ed8ac8 100644
--- a/drivers/staging/frontier/tranzport.c
+++ b/drivers/staging/frontier/tranzport.c
@@ -18,7 +18,7 @@
  *
  */
 
-/**
+/*
  * This driver uses a ring buffer for time critical reading of
  * interrupt in reports and provides read and write methods for
  * raw interrupt reports.
@@ -30,7 +30,7 @@
  * as we only have 17 commands for the tranzport. In particular this is
  * key for getting lights to flash in time as otherwise many commands
  * can be buffered up before the light change makes it to the interface.
-*/
+ */
 
 #include <linux/kernel.h>
 #include <linux/errno.h>
@@ -40,56 +40,47 @@
 #include <linux/mutex.h>
 #include <linux/version.h>
 
-#include <asm/uaccess.h>
+#include <linux/uaccess.h>
 #include <linux/input.h>
 #include <linux/usb.h>
 #include <linux/poll.h>
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19)
-#include frontier_compat.h
-#endif
-
 /* Define these values to match your devices */
 #define VENDOR_ID   0x165b
-#define PRODUCT_ID	0x8101
+#define PRODUCT_ID  0x8101
 
 #ifdef CONFIG_USB_DYNAMIC_MINORS
 #define USB_TRANZPORT_MINOR_BASE	0
-#else
-// FIXME 176 - is the ldusb driver's minor - apply for a minor soon
+#else  /* ...
Previous thread: Staging: rt2870: Removal of kernel_thread() API by Linux Kernel Mailing List on Sunday, April 5, 2009 - 12:24 pm. (1 message)

Next thread: Staging: frontier: removed now unused frontier_compat.h file by Linux Kernel Mailing List on Sunday, April 5, 2009 - 12:25 pm. (1 message)