Browse Source

staging: xgifb: function prototype argument should also have an identifier name

function prototype argument 'struct vb_device_info *' and 'unsigned
long' should also have an identifier name.

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Arushi Singhal 8 years ago
parent
commit
eb10dec551
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/staging/xgifb/vb_init.h

+ 1 - 2
drivers/staging/xgifb/vb_init.h

@@ -1,6 +1,5 @@
 #ifndef _VBINIT_
 #define _VBINIT_
 unsigned char XGIInitNew(struct pci_dev *pdev);
-void XGIRegInit(struct vb_device_info *, unsigned long);
+void XGIRegInit(struct vb_device_info *XGI_Pr, unsigned long BaseAddr);
 #endif
-