History log of /drivers/staging/bcm/nvm.h
Revision Date Author Comments
44d8311272c0d67ce135fc5cc985ff6f399a75a5 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Remove typedef for _FLASH_SECTOR_INFO.

This patch removes typedef for _FLASH_SECTOR_INFO
because it is not being used.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
168b14009a135d669cb68fa9839cf3b796dd6382 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Remove typedef for _FLASH_CS_INFO and call directly.

This patch removes typedef for _FLASH_CS_INFO, and
changes the name of the struct to bcm_flash_cs_info.
In addition, any calls to typedefs FLASH_CS_INFO, or
*PFLASH_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>
08391731e08d9e0d48664680e7b174e6f61d00e3 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> 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>
ad2f522cc6ff6db7dc4b650353739247debc293d 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Remove typedef for _VENDOR_SECTION_INFO and call directly.

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>
2fe119fd351870b1b159d4e117f77369475f150a 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Remove typedef for _FLASH2X_VENDORSPECIFIC_INFO and call directly.

This patch removes typedef for _FLASH2X_VENDORSPECIFIC_INFO,
and changes the name of the struct to bcm_flash2x_vendor_info.
In addition, any calls to typedefs FLASH2X_VENDORSPECIFIC_INFO,
or *PFLASH2X_VENDORSPECIFIC_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>
77b54101b548791bab732e93d6caa7d427204f19 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Remove typedef for _DSD_HEADER and call directly.

This patch removes typedef for _DSD_HEADER, and changes
the name of the struct to bcm_dsd_header. In addition,
any calls to typedefs DSD_HEADER, or *PDSD_HEADER are
changed to call the struct directly.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
be5e219dcdc7af02cf7e9d1033ec6c45902fdcb0 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Remove typedef for _ISO_HEADER and call directly.

This patch removes typedef for _ISO_HEADER, and changes
the name of the struct to bcm_iso_header. In addition,
any calls to typedefs ISO_HEADER, or *PISO_HEADER are
changed to call the struct directly.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20a2ae8019080d6641fb409016b55e48e6773dcc 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Replace PUCHAR with u8 * in nmv.h

This patch replaces "PUCHAR" with "u8 *" in
nvm.h.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
b5ec04ed75a5ffee36611aac58936f33db41ba92 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Replace UINT with unsigned int in nvm.h

This patch replaces "UINT" with "unsigned
int" in nvm.h.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6f98775fe99a1c0c3e14f08c7a82f772982807da 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Replace B_UINT32 with u32 in nvm.h

This patch replace "B_UINT32" with "u32" in
nvm.h

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
e5b2445e4608219fe5b9dfea0485200a34360814 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Enclose complex values in parenthesis in nvm.h

This patch fixes the warning: "Macros with complex values
should be enclosed in parenthesis" as reported by
checkpatch.pl

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
72a57c08b5eaddd64174940ff5f9edf269ca7f9d 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Properly format braces in nvm.h

This patch properly formats braces in nvm.h as
reported by checkpath.pl

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
04ac0434c10e4b57db3f8b6d49010b8fd5213b3c 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Properly format and remove comments as needed in nvm.h

This patch formats all comments and removes
them as needed.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
0a42577ddfa455bde219aa615de06fd8d2e6988c 01-Dec-2012 Kevin McKinney <klmckinney1@gmail.com> Staging: bcm: Fix all white space issues in nvm.h

This patch fixes all white space issues in
nvm.h as reported by checkpatch.pl.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2b5e625882a7130c339e4ad2ac2b8f0422f11919 29-Oct-2010 Stephen Hemminger <stephen.hemminger@vyatta.com> beceem: eliminate dead code

Get rid of empty header file and unused declarations

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
91d29ee1a82fedcd7d1bbf24007b31a49c47e90a 29-Oct-2010 Stephen Hemminger <stephen.hemminger@vyatta.com> beceem: remove ifdef's

There were a lot of ifdef's for driver options which have no
configuration options. Choose the current value and remove the
ifdef.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
f8942e07a3db9d82e8fb11d3d494876b8bae9ff9 08-Sep-2010 Stephen Hemminger <stephen.hemminger@vyatta.com> staging: Beeceem USB Wimax driver

The Sprint 4G network uses a Wimax dongle with Beecem
chipset. The driver is typical of out of tree drivers, but
maybe useful for people, and the hardware is readily available.

Here is a staging ready version (i.e warts and all)

0. Started with Rel_5.2.7.3P1_USB from Sprint4GDeveloperPack-1.1
1. Consolidated files in staging
2. Remove Dos cr/lf
3. Remove unnecessary ioctl from usbbcm_fops

Applied patches that were in the developer pack, surprising
there were ones for 2.6.35 already.

This is compile tested only, see TODO for what still needs
to be done.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>