diff options
author | Jacob Zachariah <jacob.zac316@gmail.com> | 2017-02-12 16:42:51 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-02-12 16:55:28 -0500 |
commit | 3176d60dfbc7fb6d83c77e5ed3a3695e7937a9f4 (patch) | |
tree | a3675ae258c39f53dfc1791a409300e7df6ebbb7 | |
parent | da52b8c3239a42e0aeeb752a44049f6acd2ea46f (diff) |
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>
-rw-r--r-- | drivers/staging/xgifb/vb_setmode.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/staging/xgifb/vb_setmode.h b/drivers/staging/xgifb/vb_setmode.h index 6f082a7a5a4a..c6317ab00474 100644 --- a/drivers/staging/xgifb/vb_setmode.h +++ b/drivers/staging/xgifb/vb_setmode.h | |||
@@ -1,14 +1,14 @@ | |||
1 | #ifndef _VBSETMODE_ | 1 | #ifndef _VBSETMODE_ |
2 | #define _VBSETMODE_ | 2 | #define _VBSETMODE_ |
3 | 3 | ||
4 | void InitTo330Pointer(unsigned char, struct vb_device_info *); | 4 | void InitTo330Pointer(unsigned char ChipType, struct vb_device_info *pVBInfo); |
5 | void XGI_UnLockCRT2(struct vb_device_info *); | 5 | void XGI_UnLockCRT2(struct vb_device_info *pVBInfo); |
6 | void XGI_LockCRT2(struct vb_device_info *); | 6 | void XGI_LockCRT2(struct vb_device_info *pVBInfo); |
7 | void XGI_DisplayOff(struct xgifb_video_info *, | 7 | void XGI_DisplayOff(struct xgifb_video_info *xgifb_info, |
8 | struct xgi_hw_device_info *, | 8 | struct xgi_hw_device_info *pXGIHWDE, |
9 | struct vb_device_info *); | 9 | struct vb_device_info *pVBInfo); |
10 | void XGI_GetVBType(struct vb_device_info *); | 10 | void XGI_GetVBType(struct vb_device_info *pVBInfo); |
11 | void XGI_SenseCRT1(struct vb_device_info *); | 11 | void XGI_SenseCRT1(struct vb_device_info *pVBInfo); |
12 | unsigned char XGISetModeNew(struct xgifb_video_info *xgifb_info, | 12 | unsigned char XGISetModeNew(struct xgifb_video_info *xgifb_info, |
13 | struct xgi_hw_device_info *HwDeviceExtension, | 13 | struct xgi_hw_device_info *HwDeviceExtension, |
14 | unsigned short ModeNo); | 14 | unsigned short ModeNo); |
@@ -18,6 +18,6 @@ unsigned char XGI_SearchModeID(unsigned short ModeNo, | |||
18 | unsigned short XGI_GetRatePtrCRT2(struct xgi_hw_device_info *pXGIHWDE, | 18 | unsigned short XGI_GetRatePtrCRT2(struct xgi_hw_device_info *pXGIHWDE, |
19 | unsigned short ModeNo, | 19 | unsigned short ModeNo, |
20 | unsigned short ModeIdIndex, | 20 | unsigned short ModeIdIndex, |
21 | struct vb_device_info *); | 21 | struct vb_device_info *pVBInfo); |
22 | 22 | ||
23 | #endif | 23 | #endif |