Staging: bcm: Bcmchar.c: Fixed debug output
authorMatthias Beyer <mail@beyermatthias.de>
Mon, 18 Aug 2014 10:38:31 +0000 (12:38 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Aug 2014 19:58:29 +0000 (12:58 -0700)
The output prints some struct variable contents, but uses a wrong
variable name. This is fixed by this patch.

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/Bcmchar.c

index 8b23ec947fd07eac4626b712d16e1637b8d2cb34..a491bb335b49ddf2a60f27d05ab330310ce71af8 100644 (file)
@@ -1750,13 +1750,13 @@ static int bcm_char_ioctl_flash2x_section_write(void __user *argp,
                return -EFAULT;
 
        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL,
-               "\nsFlash2xRead.Section :%x", sFlash2xWrite.Section);
+               "\nsFlash2xWrite.Section :%x", sFlash2xWrite.Section);
        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL,
-               "\nsFlash2xRead.offset :%d", sFlash2xWrite.offset);
+               "\nsFlash2xWrite.offset :%d", sFlash2xWrite.offset);
        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL,
-               "\nsFlash2xRead.numOfBytes :%x", sFlash2xWrite.numOfBytes);
+               "\nsFlash2xWrite.numOfBytes :%x", sFlash2xWrite.numOfBytes);
        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL,
-               "\nsFlash2xRead.bVerify :%x\n", sFlash2xWrite.bVerify);
+               "\nsFlash2xWrite.bVerify :%x\n", sFlash2xWrite.bVerify);
 
        if ((sFlash2xWrite.Section != VSA0) && (sFlash2xWrite.Section != VSA1)
                && (sFlash2xWrite.Section != VSA2)) {
This page took 0.025932 seconds and 5 git commands to generate.