diff options
author | Kevin McKinney <klmckinney1@gmail.com> | 2012-12-01 01:15:55 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-07 10:45:51 -0800 |
commit | 08391731e08d9e0d48664680e7b174e6f61d00e3 (patch) | |
tree | f1f4deb784a17546cd8f127ac9d81dce1d04e6b2 /drivers/staging/bcm/Adapter.h | |
parent | ad2f522cc6ff6db7dc4b650353739247debc293d (diff) | |
download | linux-08391731e08d9e0d48664680e7b174e6f61d00e3.tar.bz2 |
Staging: bcm: Remove typedef for _FLASH_2X_CS_INFO and call directly.
This patch removes typedef for _FLASH_2X_CS_INFO, and
changes the name of the struct to bcm_flash2x_cs_info.
In addition, any calls to typedefs FLASH2X_CS_INFO, or
*PFLASH2X_CS_INFO are changed to call the struct
directly.
Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/Adapter.h')
-rw-r--r-- | drivers/staging/bcm/Adapter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 4231b6751d20..d002aea92039 100644 --- a/drivers/staging/bcm/Adapter.h +++ b/drivers/staging/bcm/Adapter.h @@ -366,7 +366,7 @@ struct bcm_mini_adapter { struct device *pstCreatedClassDevice; /* BOOLEAN InterfaceUpStatus; */ - PFLASH2X_CS_INFO psFlash2xCSInfo; + struct bcm_flash2x_cs_info *psFlash2xCSInfo; PFLASH_CS_INFO psFlashCSInfo; struct bcm_flash2x_vendor_info *psFlash2xVendorInfo; UINT uiFlashBaseAdd; /* Flash start address */ |