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-Url: https://git.stricted.de/?a=commitdiff_plain;h=eb10dec55193eb08f561f28ea27e5b609f2620a5;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.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 -