From: Arushi Singhal Date: Wed, 22 Feb 2017 18:16:39 +0000 (+0530) Subject: staging: xgifb: function prototype argument should also have an identifier name X-Git-Tag: v4.12-rc1~84^2~965 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=eb10dec55193eb08f561f28ea27e5b609f2620a5;p=karo-tx-linux.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/xgifb/vb_init.h b/drivers/staging/xgifb/vb_init.h index 500cabe41a3c..e835054b87bf 100644 --- a/drivers/staging/xgifb/vb_init.h +++ b/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 -