]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Staging: bcm: Remove typedef for _NVM_READWRITE and call directly.
authorKevin McKinney <klmckinney1@gmail.com>
Thu, 22 Nov 2012 19:48:46 +0000 (14:48 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Nov 2012 00:05:22 +0000 (16:05 -0800)
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>
drivers/staging/bcm/Bcmchar.c
drivers/staging/bcm/Ioctl.h

index 5b407d66e1df942cb9ace0abc5b1816e9548c57f..2f03c0de69711009e9633a038302dd67d55256af 100644 (file)
@@ -1262,7 +1262,7 @@ cntrlEnd:
 
        case IOCTL_BCM_NVM_READ:
        case IOCTL_BCM_NVM_WRITE: {
-               NVM_READWRITE  stNVMReadWrite;
+               struct bcm_nvm_readwrite stNVMReadWrite;
                PUCHAR pReadData = NULL;
                ULONG ulDSDMagicNumInUsrBuff = 0;
                struct timeval tv0, tv1;
@@ -1289,7 +1289,7 @@ cntrlEnd:
 
                if (copy_from_user(&stNVMReadWrite,
                                        (IOCTL_BCM_NVM_READ == cmd) ? IoBuffer.OutputBuffer : IoBuffer.InputBuffer,
-                                       sizeof(NVM_READWRITE)))
+                                       sizeof(struct bcm_nvm_readwrite)))
                        return -EFAULT;
 
                /*
@@ -1842,7 +1842,7 @@ cntrlEnd:
        break;
 
        case IOCTL_BCM_NVM_RAW_READ: {
-               NVM_READWRITE stNVMRead;
+               struct bcm_nvm_readwrite stNVMRead;
                INT NOB ;
                INT BuffSize ;
                INT ReadOffset = 0;
@@ -1861,7 +1861,7 @@ cntrlEnd:
                        return -EFAULT;
                }
 
-               if (copy_from_user(&stNVMRead, IoBuffer.OutputBuffer, sizeof(NVM_READWRITE)))
+               if (copy_from_user(&stNVMRead, IoBuffer.OutputBuffer, sizeof(struct bcm_nvm_readwrite)))
                        return -EFAULT;
 
                NOB = stNVMRead.uiNumBytes;
index 4a32e8f251eb27e6f319ab5d309ca9986f54a057..ec51c8bc7e79a0d5031923846756e40b5a726ebe 100644 (file)
@@ -116,12 +116,12 @@ typedef struct _DEVICE_DRIVER_INFO {
        unsigned int            u32Reserved[10];
 } DEVICE_DRIVER_INFO;
 
-typedef  struct _NVM_READWRITE {
+struct bcm_nvm_readwrite {
        void __user *pBuffer;
        uint32_t  uiOffset;
        uint32_t uiNumBytes;
        bool bVerify;
-} NVM_READWRITE, *PNVM_READWRITE;
+};
 
 struct bcm_bulk_wrm_buffer {
        unsigned long Register;