]> git.karo-electronics.de Git - linux-beck.git/commitdiff
Staging: bmc: fix coding style warning
authorRamesh Basukala <basukalaramesh@gmail.com>
Thu, 14 Aug 2014 14:11:44 +0000 (10:11 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:23 +0000 (12:23 -0700)
This is a patch to the vendorspecificextn.c that fixes coding style
warning message line over 80 characters found by checkpatch.pl script.
I am submitting this patch as required by Eudyptula Challenge.

Signed-off-by: Ramesh Basukala <basukalaramesh@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/vendorspecificextn.c

index 2c57a16788c0d6eb82488fa0a814d4a80de9a6b5..1d9bef6e427367ffd49b834928fe172af6b9d181 100644 (file)
@@ -11,7 +11,8 @@
  *             STATUS_SUCCESS/STATUS_FAILURE
  *
  */
-INT vendorextnGetSectionInfo(PVOID  pContext, struct bcm_flash2x_vendor_info *pVendorInfo)
+INT vendorextnGetSectionInfo(PVOID  pContext,
+                       struct bcm_flash2x_vendor_info *pVendorInfo)
 {
        return STATUS_FAILURE;
 }
@@ -61,7 +62,8 @@ INT vendorextnExit(struct bcm_mini_adapter *Adapter)
  *             arg     -input parameter sent by vendor
  *
  * Returns:
- *             CONTINUE_COMMON_PATH in case it is not meant to be processed by vendor ioctls
+ *             CONTINUE_COMMON_PATH in case it is not meant to be processed
+ *             by vendor ioctls
  *             STATUS_SUCCESS/STATUS_FAILURE as per the IOCTL return value
  */
 
@@ -88,8 +90,8 @@ INT vendorextnIoctl(struct bcm_mini_adapter *Adapter, UINT cmd, ULONG arg)
  *             STATUS_SUCCESS/STATUS_FAILURE
  */
 
-INT vendorextnReadSection(PVOID  pContext, PUCHAR pBuffer, enum bcm_flash2x_section_val SectionVal,
-                       UINT offset, UINT numOfBytes)
+INT vendorextnReadSection(PVOID  pContext, PUCHAR pBuffer,
+       enum bcm_flash2x_section_val SectionVal, UINT offset, UINT numOfBytes)
 {
        return STATUS_FAILURE;
 }
@@ -112,8 +114,9 @@ INT vendorextnReadSection(PVOID  pContext, PUCHAR pBuffer, enum bcm_flash2x_sect
  * Returns:
  *             STATUS_SUCCESS/STATUS_FAILURE
  */
-INT vendorextnWriteSection(PVOID  pContext, PUCHAR pBuffer, enum bcm_flash2x_section_val SectionVal,
-                       UINT offset, UINT numOfBytes, bool bVerify)
+INT vendorextnWriteSection(PVOID  pContext, PUCHAR pBuffer,
+       enum bcm_flash2x_section_val SectionVal, UINT offset,
+       UINT numOfBytes, bool bVerify)
 {
        return STATUS_FAILURE;
 }
@@ -135,8 +138,8 @@ INT vendorextnWriteSection(PVOID  pContext, PUCHAR pBuffer, enum bcm_flash2x_sec
  * Returns:
  *             STATUS_SUCCESS/STATUS_FAILURE
  */
-INT vendorextnWriteSectionWithoutErase(PVOID  pContext, PUCHAR pBuffer, enum bcm_flash2x_section_val SectionVal,
-                       UINT offset, UINT numOfBytes)
+INT vendorextnWriteSectionWithoutErase(PVOID  pContext, PUCHAR pBuffer,
+       enum bcm_flash2x_section_val SectionVal, UINT offset, UINT numOfBytes)
 {
        return STATUS_FAILURE;
 }