]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging:xgifb:vb_setmode.h: Add missing identifier names
authorJacob Zachariah <jacob.zac316@gmail.com>
Sun, 12 Feb 2017 21:42:51 +0000 (13:42 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 12 Feb 2017 21:55:28 +0000 (13:55 -0800)
Fix multiple checkpatch.pl warnings
WARNING: function definition argument '..' should also have an identifier name

Signed-off-by: Jacob Zachariah <jacob.zac316@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/xgifb/vb_setmode.h

index 6f082a7a5a4a4c40238f7e05a93dc3af2c7bf975..c6317ab004745c6ca8a1673b1a4f012be85ed950 100644 (file)
@@ -1,14 +1,14 @@
 #ifndef _VBSETMODE_
 #define _VBSETMODE_
 
-void InitTo330Pointer(unsigned char, struct vb_device_info *);
-void XGI_UnLockCRT2(struct vb_device_info *);
-void XGI_LockCRT2(struct vb_device_info *);
-void XGI_DisplayOff(struct xgifb_video_info *,
-                   struct xgi_hw_device_info *,
-                   struct vb_device_info *);
-void XGI_GetVBType(struct vb_device_info *);
-void XGI_SenseCRT1(struct vb_device_info *);
+void InitTo330Pointer(unsigned char ChipType, struct vb_device_info *pVBInfo);
+void XGI_UnLockCRT2(struct vb_device_info *pVBInfo);
+void XGI_LockCRT2(struct vb_device_info *pVBInfo);
+void XGI_DisplayOff(struct xgifb_video_info *xgifb_info,
+                   struct xgi_hw_device_info *pXGIHWDE,
+                   struct vb_device_info *pVBInfo);
+void XGI_GetVBType(struct vb_device_info *pVBInfo);
+void XGI_SenseCRT1(struct vb_device_info *pVBInfo);
 unsigned char XGISetModeNew(struct xgifb_video_info *xgifb_info,
                            struct xgi_hw_device_info *HwDeviceExtension,
                            unsigned short ModeNo);
@@ -18,6 +18,6 @@ unsigned char XGI_SearchModeID(unsigned short ModeNo,
 unsigned short XGI_GetRatePtrCRT2(struct xgi_hw_device_info *pXGIHWDE,
                                  unsigned short ModeNo,
                                  unsigned short ModeIdIndex,
-                                 struct vb_device_info *);
+                                 struct vb_device_info *pVBInfo);
 
 #endif