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

Staging: bcm: Remove typedef for _DEVICE_DRIVER_INFO and call directly.

This patch removes typedef for _DEVICE_DRIVER_INFO,
and changes the name of the struct to
bcm_driver_info. In addition, any calls to
typedefs DEVICE_DRIVER_INFO are changed to call
the struct directly.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b4a29e10
...@@ -1955,7 +1955,7 @@ static long bcm_char_ioctl(struct file *filp, UINT cmd, ULONG arg) ...@@ -1955,7 +1955,7 @@ static long bcm_char_ioctl(struct file *filp, UINT cmd, ULONG arg)
break; break;
case IOCTL_BCM_GET_DEVICE_DRIVER_INFO: { case IOCTL_BCM_GET_DEVICE_DRIVER_INFO: {
DEVICE_DRIVER_INFO DevInfo; struct bcm_driver_info DevInfo;
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL, "Called IOCTL_BCM_GET_DEVICE_DRIVER_INFO\n"); BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL, "Called IOCTL_BCM_GET_DEVICE_DRIVER_INFO\n");
......
...@@ -107,14 +107,14 @@ typedef enum _BCM_INTERFACE_TYPE { ...@@ -107,14 +107,14 @@ typedef enum _BCM_INTERFACE_TYPE {
BCM_PCMCIA BCM_PCMCIA
} BCM_INTERFACE_TYPE; } BCM_INTERFACE_TYPE;
typedef struct _DEVICE_DRIVER_INFO { struct bcm_driver_info {
NVM_TYPE u32NVMType; NVM_TYPE u32NVMType;
unsigned int MaxRDMBufferSize; unsigned int MaxRDMBufferSize;
BCM_INTERFACE_TYPE u32InterfaceType; BCM_INTERFACE_TYPE u32InterfaceType;
unsigned int u32DSDStartOffset; unsigned int u32DSDStartOffset;
unsigned int u32RxAlignmentCorrection; unsigned int u32RxAlignmentCorrection;
unsigned int u32Reserved[10]; unsigned int u32Reserved[10];
} DEVICE_DRIVER_INFO; };
struct bcm_nvm_readwrite { struct bcm_nvm_readwrite {
void __user *pBuffer; void __user *pBuffer;
......
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