Commit 0becebb1 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Remove typedef for _BCM_INTERFACE_TYPE and reference directly.

This patch removes typedef for _BCM_INTERFACE_TYPE,
and changes the name of the enum to bcm_interface_type.
In addition, any calls to typedefs BCM_INTERFACE_TYPE
are changed to reference the enum directly.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ff31e745
...@@ -99,18 +99,18 @@ typedef struct stUserThreadReq { ...@@ -99,18 +99,18 @@ typedef struct stUserThreadReq {
#define IOCTL_BCM_GPIO_MULTI_REQUEST _IOW(BCM_IOCTL, 0x82D, IOCTL_BUFFER) #define IOCTL_BCM_GPIO_MULTI_REQUEST _IOW(BCM_IOCTL, 0x82D, IOCTL_BUFFER)
#define IOCTL_BCM_GPIO_MODE_REQUEST _IOW(BCM_IOCTL, 0x82E, IOCTL_BUFFER) #define IOCTL_BCM_GPIO_MODE_REQUEST _IOW(BCM_IOCTL, 0x82E, IOCTL_BUFFER)
typedef enum _BCM_INTERFACE_TYPE { enum bcm_interface_type {
BCM_MII, BCM_MII,
BCM_CARDBUS, BCM_CARDBUS,
BCM_USB, BCM_USB,
BCM_SDIO, BCM_SDIO,
BCM_PCMCIA BCM_PCMCIA
} BCM_INTERFACE_TYPE; };
struct bcm_driver_info { struct bcm_driver_info {
NVM_TYPE u32NVMType; NVM_TYPE u32NVMType;
unsigned int MaxRDMBufferSize; unsigned int MaxRDMBufferSize;
BCM_INTERFACE_TYPE u32InterfaceType; enum bcm_interface_type u32InterfaceType;
unsigned int u32DSDStartOffset; unsigned int u32DSDStartOffset;
unsigned int u32RxAlignmentCorrection; unsigned int u32RxAlignmentCorrection;
unsigned int u32Reserved[10]; unsigned int u32Reserved[10];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment