Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging:xgifb:vb_setmode.h: Add missing identifier names

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>

authored by

Jacob Zachariah and committed by
Greg Kroah-Hartman
3176d60d da52b8c3

+9 -9
+9 -9
drivers/staging/xgifb/vb_setmode.h
··· 1 1 #ifndef _VBSETMODE_ 2 2 #define _VBSETMODE_ 3 3 4 - void InitTo330Pointer(unsigned char, struct vb_device_info *); 5 - void XGI_UnLockCRT2(struct vb_device_info *); 6 - void XGI_LockCRT2(struct vb_device_info *); 7 - void XGI_DisplayOff(struct xgifb_video_info *, 8 - struct xgi_hw_device_info *, 9 - struct vb_device_info *); 10 - void XGI_GetVBType(struct vb_device_info *); 11 - void XGI_SenseCRT1(struct vb_device_info *); 4 + void InitTo330Pointer(unsigned char ChipType, struct vb_device_info *pVBInfo); 5 + void XGI_UnLockCRT2(struct vb_device_info *pVBInfo); 6 + void XGI_LockCRT2(struct vb_device_info *pVBInfo); 7 + void XGI_DisplayOff(struct xgifb_video_info *xgifb_info, 8 + struct xgi_hw_device_info *pXGIHWDE, 9 + struct vb_device_info *pVBInfo); 10 + void XGI_GetVBType(struct vb_device_info *pVBInfo); 11 + void XGI_SenseCRT1(struct vb_device_info *pVBInfo); 12 12 unsigned char XGISetModeNew(struct xgifb_video_info *xgifb_info, 13 13 struct xgi_hw_device_info *HwDeviceExtension, 14 14 unsigned short ModeNo); ··· 18 18 unsigned short XGI_GetRatePtrCRT2(struct xgi_hw_device_info *pXGIHWDE, 19 19 unsigned short ModeNo, 20 20 unsigned short ModeIdIndex, 21 - struct vb_device_info *); 21 + struct vb_device_info *pVBInfo); 22 22 23 23 #endif