Skip to content

Commit

Permalink
Staging: bcm: Remove typedef for _VENDOR_SECTION_INFO and call directly.
Browse files Browse the repository at this point in the history
This patch removes typedef for _VENDOR_SECTION_INFO, and
changes the name of the struct to bcm_vendor_section_info.
In addition, any calls to typedefs VENDOR_SECTION_INFO, or
*PVENDOR_SECTION_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>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Jan 7, 2013
1 parent 2fe119f commit ad2f522
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/bcm/nvm.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ typedef struct _FLASH_2X_CS_INFO {
/* All expansions to the control data structure should add here */
} FLASH2X_CS_INFO, *PFLASH2X_CS_INFO;

typedef struct _VENDOR_SECTION_INFO {
struct bcm_vendor_section_info {
u32 OffsetFromZeroForSectionStart;
u32 OffsetFromZeroForSectionEnd;
u32 AccessFlags;
u32 Reserved[16];
} VENDOR_SECTION_INFO, *PVENDOR_SECTION_INFO;
};

struct bcm_flash2x_vendor_info {
VENDOR_SECTION_INFO VendorSection[TOTAL_SECTIONS];
struct bcm_vendor_section_info VendorSection[TOTAL_SECTIONS];
u32 Reserved[16];
};

Expand Down

0 comments on commit ad2f522

Please sign in to comment.