]> Pileus Git - ~andy/linux/commitdiff
Staging: bcm: Rename USHORT to unsigned short in InterfaceMisc.c
authorKevin McKinney <klmckinney1@gmail.com>
Sat, 13 Oct 2012 03:49:31 +0000 (23:49 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 19 Oct 2012 20:42:22 +0000 (13:42 -0700)
This patch renames uppercase USHORT to
unsigned short in InterfaceMisc.c.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/InterfaceMisc.c

index 793a492e64b3657dd3889557185c091381c83146..fd482a29ead815c2a250f94f7fd60e1ad90b19ae 100644 (file)
@@ -6,7 +6,7 @@ int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
                int len)
 {
        int bytes;
-       USHORT usRetries = 0;
+       unsigned short usRetries = 0;
 
        if (psIntfAdapter == NULL) {
                BCM_DEBUG_PRINT(psIntfAdapter->psAdapter, DBG_TYPE_PRINTK, 0, 0, "Interface Adapter is NULL");
@@ -63,7 +63,7 @@ int InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
                int len)
 {
        int retval = 0;
-       USHORT usRetries = 0;
+       unsigned short usRetries = 0;
 
        if (psIntfAdapter == NULL) {
                BCM_DEBUG_PRINT(psIntfAdapter->psAdapter, DBG_TYPE_PRINTK, 0, 0, "Interface Adapter  is NULL");