From: <vl...@us...> - 2008-05-21 15:40:41
|
Revision: 382 http://scst.svn.sourceforge.net/scst/?rev=382&view=rev Author: vlnb Date: 2008-05-21 08:40:33 -0700 (Wed, 21 May 2008) Log Message: ----------- Patch from Bart Van Assche <bar...@gm...>: The patch below fixes another category of checkpatch warnings, namely: ERROR: "foo * bar" should be "foo *bar" This patch has been verified by checking that the output of svn diff -x -w is empty. Signed-off-by: Bart Van Assche <bar...@gm...> Modified Paths: -------------- trunk/scst/include/scst.h trunk/scst/src/scst_proc.c trunk/srpt/src/ib_srpt.c Modified: trunk/scst/include/scst.h =================================================================== --- trunk/scst/include/scst.h 2008-05-21 11:56:09 UTC (rev 381) +++ trunk/scst/include/scst.h 2008-05-21 15:40:33 UTC (rev 382) @@ -2548,7 +2548,7 @@ int scst_single_seq_open(struct inode *inode, struct file *file); -struct proc_dir_entry *scst_create_proc_entry(struct proc_dir_entry * root, +struct proc_dir_entry *scst_create_proc_entry(struct proc_dir_entry *root, const char *name, struct scst_proc_data *pdata); #define SCST_DEF_RW_SEQ_OP(x) \ Modified: trunk/scst/src/scst_proc.c =================================================================== --- trunk/scst/src/scst_proc.c 2008-05-21 11:56:09 UTC (rev 381) +++ trunk/scst/src/scst_proc.c 2008-05-21 15:40:33 UTC (rev 382) @@ -2123,7 +2123,7 @@ .show = scst_dev_handler_info_show, }; -struct proc_dir_entry *scst_create_proc_entry(struct proc_dir_entry * root, +struct proc_dir_entry *scst_create_proc_entry(struct proc_dir_entry *root, const char *name, struct scst_proc_data *pdata) { struct proc_dir_entry *p = NULL; Modified: trunk/srpt/src/ib_srpt.c =================================================================== --- trunk/srpt/src/ib_srpt.c 2008-05-21 11:56:09 UTC (rev 381) +++ trunk/srpt/src/ib_srpt.c 2008-05-21 15:40:33 UTC (rev 382) @@ -145,7 +145,7 @@ } } -static void srpt_set_ioc(u8 * c_list, u32 slot, u8 value) +static void srpt_set_ioc(u8 *c_list, u32 slot, u8 value) { u16 id; u8 tmp; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |