staging: vt6656: int.c: Use one space between variable type and name
authorJesper Juhl <jj@chaosbits.net>
Wed, 27 Jun 2012 20:02:19 +0000 (22:02 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Jul 2012 23:10:54 +0000 (16:10 -0700)
The style of most kernel code is that there is 1 *space* between the
type of a variable and its name. This patch enforces that in
drivers/staging/vt6656/int.c .

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/int.c

index e7f66241b9b5f02ab07423990135ba314eb70cc5..40605c8137e3d607092486c10e02f29d84545130 100644 (file)
@@ -90,8 +90,8 @@ void INTvWorkItem(void *Context)
 
 void INTnsProcessData(PSDevice pDevice)
 {
-       PSINTData       pINTData;
-       PSMgmtObject    pMgmt = &(pDevice->sMgmtObj);
+       PSINTData pINTData;
+       PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
        struct net_device_stats *pStats = &pDevice->stats;
 
        DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsInterruptProcessData\n");
This page took 0.040076 seconds and 5 git commands to generate.