aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/bcm/HostMIBSInterface.h
AgeCommit message (Collapse)Author
2012-11-26Staging: bcm: Remove typedef for _U_MIBS_IP_ADDRESS and call directly.Kevin McKinney
This patch removes typedef for _U_MIBS_IP_ADDRESS, and changes the name of the union to bcm_mibs_ip_addr. In addition, any calls to typedef U_MIBS_IP_ADDRESS are changed to call the union directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Remove typedef for _S_MIBS_HOST_INFO and call directly.Kevin McKinney
This patch removes typedef for _S_MIBS_HOST_INFO, and changes the name of the struct to bcm_mibs_host_info. In addition, any calls to typedef S_MIBS_HOST_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>
2012-11-26Staging: bcm: Remove typedef for _S_MIBS_CLASSIFIER_RULE and call directly.Kevin McKinney
This patch removes typedef for _S_MIBS_CLASSIFIER_RULE, and changes the name of the struct to bcm_mibs_classifier_rule. In addition, any calls to typedef S_MIBS_CLASSIFIER_RULE are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Remove typedef for _S_MIBS_PHS_RULE and call directly.Kevin McKinney
This patch removes typedef for _S_MIBS_PHS_RULE, and changes the name of the struct to bcm_mibs_phs_rule. In addition, any calls to typedef S_MIBS_PHS_RULE are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Remove typedef for _S_MIBS_EXTSERVICEFLOW_PARAMETERS and call ↵Kevin McKinney
directly. This patch removes typedef for _S_MIBS_EXTSERVICEFLOW_PARAMETERS, and changes the name of the struct to bcm_mibs_parameters. In addition, any calls to typedef S_MIBS_EXTSERVICEFLOW_PARAMETERS are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Remove typedef for _S_MIBS_SERVICEFLOW_TABLE and call directly.Kevin McKinney
This patch removes typedef for _S_MIBS_SERVICEFLOW_TABLE, and changes the name of the struct to bcm_mibs_table. In addition, any calls to typedef S_MIBS_SERVICEFLOW_TABLE are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Remove typedef for _S_MIBS_DROPPED_APP_CNTRL_MESSAGES and call ↵Kevin McKinney
directly. This patch removes typedef for _S_MIBS_DROPPED_APP_CNTRL_MESSAGES, and changes the name of the struct to bcm_mibs_dropped_cntrl_msg. In addition, any calls to typedef S_MIBS_DROPPED_APP_CNTRL_MESSAGES are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Remove typedef for _S_MIBS_HOST_STATS_MIBS and call directly.Kevin McKinney
This patch removes typedef for _S_MIBS_HOST_STATS_MIBS, and changes the name of the struct to bcm_host_stats_mibs. In addition, any calls to typedefs S_MIBS_HOST_STATS_MIBS are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace LARGE_INTEGER with u64 in HostMIBSInterface.hKevin McKinney
This patch replaces "LARGE_INTEGER" with "u64" in HostMIBSInterface.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace BOOLEAN with bool in HostMIBSInterface.hKevin McKinney
This patch replaces "BOOLEAN" with "bool" in HostMIBSInterface.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace USHORT with unsigned short in HostMIBSInterface.hKevin McKinney
This patch replaces "USHORT" with "unsigned short" in HostMIBSInterface.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace UINT with unsigned int in HostMIBSInterface.hKevin McKinney
This patch replaces "UINT" with "unsigned int" in HostMIBSInterface.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace B_UINT8 with u8 in HostMIBSInterface.hKevin McKinney
This patch replaces "B_UINT8" with "u8" in HostMIBSInterface.h. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace B_UINT16 with u16 in HostMIBSInterface.hKevin McKinney
This patch replaces "B_UINT16" with "u16" in HostMIBSInterface.h. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace UINT32 with u32 in HostMIBSInterface.hKevin McKinney
This patch replaces "UINT32" with "u32" in HostMIBSInterface.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace LONG with long in HostMIBSInterface.hKevin McKinney
This patch replaces "LONG" with "long" in HostMIBSInterface.h. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace ULONG with unsigned long in HostMIBSInterface.hKevin McKinney
This patch replaces "ULONG" with "unsigned long" in HostMIBSInterface.h. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace ULONG64 with u64 in HostMIBSInterface.hKevin McKinney
This patch replaces "ULONG64" with "u64" in HostMIBSInterface.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Replace UCHAR with unsigned char in HostMIBSInterface.hKevin McKinney
This patch replace "UCHAR" with "unsigned char" in HostMIBSInterface.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Properly format braces in HostMIBSInterface.hKevin McKinney
This patch formats braces in HostMIBSInterface.h as reported by checkpatch.pl. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-26Staging: bcm: Properly format and remove comments as needed in ↵Kevin McKinney
HostMIBSInterface.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>
2012-11-26Staging: bcm: Fix all white space issues in HostMIBSInterface.hKevin McKinney
This patch fixes all white space issues in HostMIBSInterface.h as reported by checkpatch.pl. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2011-03-31Fix common misspellingsLucas De Marchi
Fixes generated by 'codespell' and manually reviewed. Signed-off-by: Lucas De Marchi <lucas.demarchi@profusion.mobi>
2010-09-08staging: Beeceem USB Wimax driverStephen Hemminger
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>