summaryrefslogtreecommitdiff
path: root/drivers/staging/bcm
AgeCommit message (Collapse)Author
2012-11-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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-27Staging: 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>
2012-11-27Staging: bcm: Remove typedef for rdmbuffer and call directly.Kevin McKinney
This patch removes typedef for rdmbuffer, and changes the name of the struct to bcm_rdm_buffer. In addition, any calls to typedefs RDM_BUFFER, or *PRDM_BUFFER 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-27Staging: bcm: Remove typedef for wrmbuffer and call directly.Kevin McKinney
This patch removes typedef for wrmbuffer, and changes the name of the struct to bcm_wrm_buffer. In addition, any calls to typedefs WRM_BUFFER, or *PWRM_BUFFER 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-27Staging: bcm: Remove typedef for stGPIOInfo and call directly.Kevin McKinney
This patch removes typedef for stGPIOInfo, and changes the name of the struct to bcm_gpio_info. In addition, any calls to typedefs GPIO_INFO, or *PGPIO_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-27Staging: bcm: Remove typedef for ioctlbuffer and call directly.Kevin McKinney
This patch removes typedef for ioctlbuffer, and changes the name of the struct to bcm_ioctl_buffer. In addition, any calls to typedefs IOCTL_BUFFER, or *PIOCTL_BUFFER 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-27Staging: bcm: Remove typedef for stUserThreadReq and call directly.Kevin McKinney
This patch removes typedef for stUserThreadReq, and changes the name of the struct to bcm_user_thread_req. In addition, any calls to typedefs USER_THREAD_REQ, or *PUSER_THREAD_REQ 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-27Staging: bcm: Remove typedef for _FLASH2X_SECTION_VAL and reference directly.Kevin McKinney
This patch removes typedef for _FLASH2X_SECTION_VAL, and changes the name of the enum to bcm_flash2x_section_val. In addition, any calls to typedefs FLASH2X_SECTION_VAL are changed to reference the enum directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Remove typedef for _BCM_INTERFACE_TYPE and reference directly.Kevin McKinney
This patch removes typedef for _BCM_INTERFACE_TYPE, and changes the name of the enum to bcm_interface_type. In addition, any calls to typedefs BCM_INTERFACE_TYPE are changed to reference the enum directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Remove typedef for _DEVICE_DRIVER_INFO and call directly.Kevin McKinney
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: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Remove typedef for _FLASH2X_READWRITE and call directly.Kevin McKinney
This patch removes typedef for _FLASH2X_READWRITE, and changes the name of the struct to bcm_flash2x_readwrite. In addition, any calls to typedefs FLASH2X_READWRITE, or *PFLASH2X_READWRITE 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-27Staging: bcm: Remove typedef for _NVM_READWRITE and call directly.Kevin McKinney
This patch removes typedef for _NVM_READWRITE, and changes the name of the struct to bcm_nvm_readwrite. In addition, any calls to typedefs NVM_READWRITE, or *PNVM_READWRITE 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-27Staging: bcm: Remove typedef for bulkwrmbuffer and call directly.Kevin McKinney
This patch removes typedef for bulkwrmbuffer, and changes the name of the struct to bcm_bulk_wrm_buffer. In addition, any calls to typedefs BULKWRM_BUFFER, or *PBULKWRM_BUFFER 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-27Staging: bcm: Remove typedef for _FLASH2X_COPY_SECTION and call directly.Kevin McKinney
This patch removes typedef for _FLASH2X_COPY_SECTION, and changes the name of the struct to bcm_flash2x_copy_section. In addition, any calls to typedefs FLASH2X_COPY_SECTION, or *PFLASH2X_COPY_SECTION 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-27Staging: bcm: Remove typedef for _SECTION_TYPE.Kevin McKinney
This patch removes typedef for enum _SECTION_TYPE because it is not being used. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Remove typedef for _FLASH2X_BITMAP and call directly.Kevin McKinney
This patch removes typedef for _FLASH2X_BITMAP, and changes the name of the struct to bcm_flash2x_bitmap. In addition, any calls to typedefs FLASH2X_BITMAP, or *PFLASH2X_BITMAP 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-27Staging: bcm: Remove typedef for _ST_TIME_ELAPSED_ and call directly.Kevin McKinney
This patch removes typedef for _ST_TIME_ELAPSED_, and changes the name of the struct to bcm_time_elapsed. In addition, any calls to typedefs ST_TIME_ELAPSED, or *PST_TIME_ELAPSED 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-27Staging: bcm: Remove typedef for stGPIOMultiInfo and call directly.Kevin McKinney
This patch removes typedef for stGPIOMultiInfo, and changes the name of the struct to bcm_gpio_multi_info. In addition, any calls to typedefs GPIO_MULTI_INFO, or *PGPIO_MULTI_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-27Staging: bcm: Remove typedef for stGPIOMultiMode and call directly.Kevin McKinney
This patch removes typedef for stGPIOMultiMode, and changes the name of the struct to bcm_gpio_multi_mode. In addition, any calls to typedefs GPIO_MULTI_MODE, or *PGPIO_MULTI_MODE 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-27Staging: bcm: Replace UINT with unsigned int in Ioctl.hKevin McKinney
This patch replaces "UINT" with "unsigned int" in Ioctl.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Replace UINT32 with u32 in Ioctl.hKevin McKinney
This patch replaces "UINT32" with "u32" in Ioctl.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Replace B_UINT32 with u32 in Ioctl.hKevin McKinney
This patch replaces "B_UINT32" with "u32" in Ioctl.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Replace ULONG with unsigned long in Ioctl.hKevin McKinney
This patch replace "ULONG" with "unsigned long" in Ioctl.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Replace ULONG64 with unsigned long long in Ioctl.hKevin McKinney
This patch replace "ULONG64" with "unsigned long long" in Ioctl.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Replace UCHAR with unsigned char in Ioctl.hKevin McKinney
This patch replace "UCHAR" with "unsigned char" in Ioctl.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Replace __attribute__((packed)) with __packed in Ioctl.hKevin McKinney
This patch fixes the following warning as reported by checkpath.pl, "WARNING:__packed is preferred over __attribute__((packed))". Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Properly format braces in Ioctl.hKevin McKinney
This patch formats braces in Ioctl.h as reported by checkpath.pl. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-11-27Staging: bcm: Properly format and remove comments as needed in Ioctl.hKevin McKinney
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-27Staging: bcm: Fix all white space issues in Ioctl.hKevin McKinney
This patch fixes all white space issues in Ioctl.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-13Staging: bcm: Add two products and remove an existing product.Kevin McKinney
This patch adds two new products and modifies the device id table to include them. In addition, product of 0xbccd - BCM_USB_PRODUCT_ID_SM250 is removed because Beceem, ZTE, Sprint use this id for block devices. Reported-by: Muhammad Minhazul Haque <mdminhazulhaque@gmail.com> Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Cc: stable <stable@vger.kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>