Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1586374
| From | Arushi Singhal <arushisinghal19971997@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v3] staging: xgifb: function prototype argument should also have an identifier name |
| Date | 2017-02-22 19:20 +0100 |
| Message-ID | <tdJGa-5HP-29@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
function prototype argument 'struct vb_device_info *' and 'unsigned long' should also have an identifier name. Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com> --- changes in v3 -make the subject title more relevant. -change the identifier of struct vb_device_info to XGI_Pr. --- drivers/staging/xgifb/vb_init.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 - -- 2.11.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v3] staging: xgifb: function prototype argument should also have an identifier name Arushi Singhal <arushisinghal19971997@gmail.com> - 2017-02-22 19:20 +0100 Re: [PATCH v3] staging: xgifb: function prototype argument should also have an identifier name "Tobin C. Harding" <me@tobin.cc> - 2017-02-23 03:10 +0100 Re: [PATCH v3] staging: xgifb: function prototype argument should also have an identifier name Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2017-02-24 18:00 +0100
csiph-web