staging/rtl8187se: Remove unused functions PlatformIORead2Byte / PlatformIORead4Byte
authorPeter Huewe <peterhuewe@gmx.de>
Wed, 13 Feb 2013 03:05:24 +0000 (04:05 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Feb 2013 18:28:37 +0000 (10:28 -0800)
These two functions PlatformIORead2Byte and PlatformIORead4Byte are
unused and thus can be removed.

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8187se/r8185b_init.c

index 1dfa78e137c0a26d454b49312da7e05d5c997440..005fb0bce4868454b1e40697b38db092b8d2a449 100644 (file)
@@ -175,26 +175,6 @@ void PlatformIOWrite4Byte(struct net_device *dev, u32 offset, u32 data)
        }
 }
 
-u16 PlatformIORead2Byte(struct net_device *dev, u32 offset)
-{
-       u16     data = 0;
-
-       data = read_nic_word(dev, offset);
-
-
-       return data;
-}
-
-u32 PlatformIORead4Byte(struct net_device *dev, u32 offset)
-{
-       u32     data = 0;
-
-       data = read_nic_dword(dev, offset);
-
-
-       return data;
-}
-
 void SetOutputEnableOfRfPins(struct net_device *dev)
 {
        write_nic_word(dev, RFPinsEnable, 0x1bff);