[PATCH 1/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_softmac_wx.c

2012-11-27 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: space prohibited after that '&' (ctx:WxW) Signed-off-by: YAMANE Toshiaki --- .../rtl8187se/ieee80211/ieee80211_softmac_wx.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl81

[PATCH 2/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_softmac_wx.c

2012-11-27 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: space required before the open brace '{' - ERROR: space required before the open parenthesis '(' - ERROR: space prohibited before that close parenthesis ')' - ERROR: space required after that close brace '}' Signed-off

[PATCH 3/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_softmac_wx.c

2012-11-27 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: suspect code indent for conditional statements Signed-off-by: YAMANE Toshiaki --- .../rtl8187se/ieee80211/ieee80211_softmac_wx.c |9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/staging/rtl8187se/ieee80211

[PATCH 4/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_softmac_wx.c

2012-11-27 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: space prohibited after that ',' (ctx:WxW) Signed-off-by: YAMANE Toshiaki --- .../rtl8187se/ieee80211/ieee80211_softmac_wx.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/drivers/staging/rtl8187se

[PATCH 5/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_softmac_wx.c

2012-11-27 Thread YAMANE Toshiaki
The following wanings fixed. - WARNING: braces {} are not necessary for any arm of this statement Signed-off-by: YAMANE Toshiaki --- .../rtl8187se/ieee80211/ieee80211_softmac_wx.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/drivers/staging/rtl8187se

[PATCH 6/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_softmac_wx.c

2012-11-27 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: spaces required around that '=' (ctx:VxV) Signed-off-by: YAMANE Toshiaki --- .../rtl8187se/ieee80211/ieee80211_softmac_wx.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8187se

[PATCH 7/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_softmac_wx.c

2012-11-27 Thread YAMANE Toshiaki
The following wanings fixed. - WARNING: please, no spaces at the start of a line Signed-off-by: YAMANE Toshiaki --- .../rtl8187se/ieee80211/ieee80211_softmac_wx.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/rtl8187se/ieee80211

[PATCH 8/8] staging/rtl8187se: Use netdev_ printks in ieee80211/ieee80211_softmac_wx.c

2012-11-27 Thread YAMANE Toshiaki
The following warning fixed. - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- .../rtl8187se/ieee80211/ieee80211_softmac_wx.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH 1/8] staging/rtl8187se: Fix include file issue in ieee80211/ieee80211_rx.c

2012-11-28 Thread YAMANE Toshiaki
The following warning fixed. - WARNING: Use #include instead of Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c b/drivers/staging

[PATCH 2/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_rx.c

2012-11-28 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: suspect code indent for conditional statements Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c | 56 ++-- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/drivers/staging/rtl8187se

[PATCH 3/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_rx.c

2012-11-28 Thread YAMANE Toshiaki
ERROR: spaces required around that ':' (ctx:VxV) -- ERROR: spaces required around that '!=' (ctx:VxW) -- ERROR: need consistent spacing around '-' (ctx:WxV) -- ERROR: spaces required around that '=' (ctx:VxW) -- ERROR: spaces required around that '||'

[PATCH 4/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_rx.c

2012-11-28 Thread YAMANE Toshiaki
before that close parenthesis ')' Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c | 151 +++- 1 file changed, 54 insertions(+), 97 deletions(-) diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c b/drivers/staging/rtl8187s

[PATCH 5/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_rx.c

2012-11-28 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: "foo* bar" should be "foo *bar" Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8187se/ieee80211/ieee8

[PATCH 6/8] staging/rtl8187se: Use netdev_ printks in ieee80211/ieee80211_rx.c

2012-11-28 Thread YAMANE Toshiaki
dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c | 23 ++-- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c b

[PATCH 7/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_rx.c

2012-11-28 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c | 47 +--- 1 file changed, 20 insertions(+), 27 deletions(-) diff --git a/drivers/staging

[PATCH 8/8] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_rx.c

2012-11-28 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: please, no spaces at the start of a line - WARNING: please, no space before tabs Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/ieee80211_rx.c | 34 ++-- 1 file changed, 17 insertions(+), 17 deletions(-) diff

[PATCH] staging/serqt_usb2: Refactor qt_status_change_check() in serqt_usb2.c

2012-11-28 Thread YAMANE Toshiaki
Improved position to increment variable i, And typo fixes. Signed-off-by: YAMANE Toshiaki --- drivers/staging/serqt_usb2/serqt_usb2.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/serqt_usb2/serqt_usb2.c b/drivers/staging/serqt_usb2

[PATCH 1/4] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_wx.c

2012-11-29 Thread YAMANE Toshiaki
The following errors and warnings fixed. - ERROR: code indent should use tabs where possible - WARNING: please, no spaces at the start of a line - WARNING: please, no space before tabs Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c | 372

[PATCH 2/4] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_wx.c

2012-11-29 Thread YAMANE Toshiaki
The following errors fixed. -ERROR: that open brace { should be on the previous line -ERROR: space required before the open parenthesis '(' -ERROR: else should follow close brace '}' -ERROR: space required before the open brace '{' Signed-off-by: YAMANE Toshiaki

[PATCH 3/4] staging/rtl8187se: Fix spacing coding style in ieee80211/ieee80211_wx.c

2012-11-29 Thread YAMANE Toshiaki
The following errors fixed. -ERROR: spaces required around that '<' (ctx:VxV) -ERROR: spaces required around that '?' (ctx:VxV) -ERROR: spaces required around that ':' (ctx:VxV) -ERROR: spaces required around that '>' (ctx:VxV) Signed-off-by: Y

[PATCH 4/4] staging/rtl8187se: Use netdev_ printks in ieee80211/ieee80211_wx.c

2012-11-29 Thread YAMANE Toshiaki
The following warnings fixed. -WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... -WARNING: Prefer netdev_dbg(netdev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... Signed-off-by: YAMANE Toshiaki --- drivers

Re: [PATCH] staging/serqt_usb2: Refactor qt_status_change_check() in serqt_usb2.c

2012-11-29 Thread YAMANE Toshiaki
On Fri, Nov 30, 2012 at 11:10 AM, Greg Kroah-Hartman wrote: > On Thu, Nov 29, 2012 at 01:57:56PM +0900, YAMANE Toshiaki wrote: >> Improved position to increment variable i, >> And typo fixes. >> >> Signed-off-by: YAMANE Toshiaki >> --- >> drivers

[PATCH 1/3] Fix trailing whitespace in trace.h

2012-10-02 Thread YAMANE Toshiaki
fixed below checkpatch error. -ERROR: trailing whitespace Signed-off-by: Toshiaki Yamane --- drivers/staging/rts_pstor/trace.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rts_pstor/trace.h b/drivers/staging/rts_pstor/trace.h index cf60a1b..740999c 100

[PATCH 2/3] Add parenthesis to macros with complex values in trace.h

2012-10-02 Thread YAMANE Toshiaki
fixed some checkpatch below error. -ERROR: Macros with complex values should be enclosed in parenthesis Signed-off-by: Toshiaki Yamane --- drivers/staging/rts_pstor/trace.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rts_pstor/trace.h b/drivers/sta

[PATCH 3/3] Fix line over 80 character issue and space before tabs issue in trace.h

2012-10-02 Thread YAMANE Toshiaki
fixed some checkpatch warnings. -WARNING: line over 80 characters -WARNING: please, no space before tabs Signed-off-by: Toshiaki Yamane --- drivers/staging/rts_pstor/trace.h | 62 - 1 file changed, 34 insertions(+), 28 deletions(-) diff --git a/drivers/sta

[PATCH] staging/comedi: Use dev_ printks in kcomedilib/kcomedilib_main.c

2012-10-04 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: YAMANE Toshiaki --- .../staging/comedi/kcomedilib/kcomedilib_main.c|5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git

[PATCH] staging/comedi: Use dev_ printks in drivers/me_daq.c

2012-10-04 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: quoted string split across lines Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/me_daq.c | 26 +++--- 1

[PATCH] staging/comedi: Use dev_ printks in drivers/adl_pci8164.c

2012-10-04 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/adl_pci8164.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff

[PATCH 2/3] staging/sbe-2t3e3: Use netdev_ or dev_ or pr_ printks in module.c

2012-10-23 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... and add pr_fmt. Signed-off-by: YAMANE Toshiaki

[PATCH 1/3] staging/sbe-2t3e3: Use netdev_ printks in main.c

2012-10-23 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/sbe-2t3e3/main.c |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers

[PATCH v2] staging/comedi: Use dev_ printks in drivers/vmk80xx.c

2012-10-23 Thread YAMANE Toshiaki
fixed below checkpatch warning. - Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/vmk80xx.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a

[PATCH v2] staging/comedi: Use pr_ or dev_ printks in drivers/usbduxfast.c

2012-10-23 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... and added pr_fmt. Signed-off-by: YAMANE Toshiaki

[PATCH v2] staging/comedi: Use pr_ or dev_ printks in drivers/unioxx5.c

2012-10-24 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... and added pr_fmt. Signed-off-by: YAMANE Toshiaki

[PATCH v2] staging/comedi: Use pr_ or dev_ printks in drivers/serial2002.c

2012-10-24 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... and added pr_fmt. Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/serial2002.c |6 -- 1 file changed, 4 insertions(+), 2 deletions

[PATCH v2] staging/comedi: Use pr_ or dev_ printks in drivers/gsc_hdpi.c

2012-10-24 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... some of them have been replaced by dev_dbg or pr_debug, and added pr_fmt. Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/gsc_hpdi.c

[PATCH v3] staging/comedi: Use pr_ or dev_ printks in drivers/gsc_hdpi.c

2012-10-25 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... some of them have been replaced by dev_dbg, and added pr_fmt. Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/gsc_hpdi.c | 31

[PATCH v4] staging/comedi: Use pr_ or dev_ printks in drivers/gsc_hpdi.c

2012-10-25 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... some of them have been replaced by dev_dbg. Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/gsc_hpdi.c | 26

[PATCH 1/3] staging/comedi: fix the spaces issue at the start of line in drivers/ni_mio_cs.c

2012-10-31 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: please, no spaces at the start of a line Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/ni_mio_cs.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/comedi/drivers/ni_mio_cs.c b/drivers/staging

[PATCH 2/3] staging/comedi: fix the initialize statics issue in drivers/ni_mio_cs.c

2012-10-31 Thread YAMANE Toshiaki
fixed below checkpatch error. - ERROR: do not initialise statics to 0 or NULL Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/ni_mio_cs.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/comedi/drivers/ni_mio_cs.c b/drivers/staging/comedi

[PATCH 3/3] staging/comedi: Use dev_ printks in drivers/ni_mio_cs.c

2012-10-31 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: printk() should include KERN_ facility level Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/ni_mio_cs.c | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/drivers/staging/comedi/drivers

[PATCH] staging/comedi: Use dev_ printks in ni_tiocmd.c

2012-11-01 Thread YAMANE Toshiaki
dev_notice(dev, ... then pr_notice(... to printk(KERN_NOTICE ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/ni_tiocmd.c | 20 +--- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/drivers/staging/comedi/drivers/ni_tiocmd.c b/drivers/staging

[PATCH] staging/media: Use dev_ printks in cxd2099/cxd2099.[ch]

2012-11-02 Thread YAMANE Toshiaki
dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/media/cxd2099/cxd2099.c | 29 +++-- drivers/staging/media/cxd2099/cxd2099.h |2 +- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/drivers

[PATCH 1/2] Staging/media: fixed spacing coding style in go7007/wis-ov7640.c

2012-11-02 Thread YAMANE Toshiaki
fixed below checkpatch error. - ERROR: that open brace { should be on the previous line Signed-off-by: YAMANE Toshiaki --- drivers/staging/media/go7007/wis-ov7640.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/media/go7007/wis-ov7640.c b/drivers

[PATCH 2/2] Staging/media: Use dev_ printks in go7007/wis-ov7640.c

2012-11-02 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_dbg(netdev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH] staging/comedi: Use dev_ printks in drivers/adl_pci9118.c

2012-11-03 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/adl_pci9118.c | 31 ++ 1 file changed, 17 insertions(+), 14

[PATCH] staging/comedi: fix the spaces issue around that '=' in drivers/ni_670x.c

2012-11-03 Thread YAMANE Toshiaki
fixed below checkpatch error. - ERROR: spaces required around that '=' (ctx:WxV) Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/ni_670x.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/comedi/drivers/ni_670x.c b/drivers/stag

[PATCH] staging/comedi: Use dev_ printks in drivers/comedi_fc.c

2012-11-03 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/comedi_fc.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[PATCH] staging/comedi: fix the spaces issue around that '->' in drivers/gsc_hpdi.c

2012-11-03 Thread YAMANE Toshiaki
fixed below checkpatch error. - ERROR: spaces prohibited around that '->' (ctx:VxW) Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/gsc_hpdi.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/comedi/drivers/gsc_hpdi.c b/dr

[PATCH] staging/media: Use dev_ printks in go7007/go7007-driver.c

2012-11-04 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/media/go7007/go7007-driver.c |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a

[PATCH] staging/media: Use dev_ printks in go7007/wis-sony-tuner.c

2012-11-04 Thread YAMANE Toshiaki
dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/media/go7007/wis-sony-tuner.c | 86 - 1 file changed, 42 insertions(+), 44 deletions(-) diff --git a/drivers/staging/media/go7007/wis-sony-tuner.c b/drivers/staging

[PATCH] staging/media: Use dev_ printks in go7007/s2250-loader.c

2012-11-05 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH] staging/media: Use dev_ or pr_ printks in go7007/go7007-i2c.c

2012-11-05 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_dbg(netdev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH 1/2] Staging/media: fixed spacing coding style in go7007/wis-saa7115.c

2012-11-05 Thread YAMANE Toshiaki
fixed below checkpatch error. - ERROR: that open brace { should be on the previous line Signed-off-by: YAMANE Toshiaki --- drivers/staging/media/go7007/wis-saa7115.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/media/go7007/wis-saa7115.c b/drivers

[PATCH 2/2] staging/media: Use dev_ or pr_ printks in go7007/wis-saa7115.c

2012-11-05 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_dbg(netdev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH 1/2] Staging/media: fixed spacing coding style in go7007/wis-saa7113.c

2012-11-05 Thread YAMANE Toshiaki
fixed below checkpatch error. - ERROR: that open brace { should be on the previous line Signed-off-by: YAMANE Toshiaki --- drivers/staging/media/go7007/wis-saa7113.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/media/go7007/wis-saa7113.c b/drivers

[PATCH 2/2] staging/media: Use dev_ or pr_ printks in go7007/wis-saa7113.c

2012-11-05 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_dbg(netdev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH 1/2] staging/media: Use dev_ printks in go7007/go7007-fw.c

2012-11-05 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_dbg(netdev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH 2/2] staging/media: Fix trailing statements should be on next line in go7007/go7007-fw.c

2012-11-05 Thread YAMANE Toshiaki
fixed below checkpatch error. - ERROR: trailing statements should be on next line Signed-off-by: YAMANE Toshiaki --- drivers/staging/media/go7007/go7007-fw.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/media/go7007/go7007-fw.c b/drivers/staging

[PATCH] staging:comedi: Use pr_ or dev_ printks in drivers/usbduxfaxt.c

2012-10-26 Thread YAMANE Toshiaki
fixed below checkpatch warnings. -WARNING: printk() should include KERN_ facility level Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/usbduxfast.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/comedi/drivers/usbduxfast.c b

[PATCH 1/2] staging/comedi: Fix trailing statements should be on next line in drivers/quatech_daqp_cs.c

2012-10-27 Thread YAMANE Toshiaki
fixed below checkpatch errors. - ERROR: trailing statements should be on next line Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/quatech_daqp_cs.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging/comedi/drivers/quatech_daqp_cs.c b

[PATCH 2/2] staging/comedi: Use dev_ printks in drivers/quatech_daqp_cs.c

2012-10-27 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: printk() should include KERN_ facility level Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/quatech_daqp_cs.c |9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/staging/comedi/drivers

[PATCH 1/7] staging/gdm72xx: Use netdev_ or pr_ printks in gdm_wimax.c

2012-10-29 Thread YAMANE Toshiaki
dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... and add pr_fmt. Signed-off-by: YAMANE Toshiaki --- drivers/staging/gdm72xx/gdm_wimax.c | 60 ++- 1 file changed, 31 insertions(+), 29 deletions(-) diff --git a/drivers/staging/gdm72xx/gdm_wimax.c b

[PATCH 2/7] staging/gdm72xx: Use netdev_ or pr_ printks in gdm_qos.c

2012-10-29 Thread YAMANE Toshiaki
(dev, ... then pr_debug(... to printk(KERN_DEBUG ... and add pr_fmt. Signed-off-by: YAMANE Toshiaki --- drivers/staging/gdm72xx/gdm_qos.c | 33 - 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/drivers/staging/gdm72xx/gdm_qos.c b/drivers

[PATCH 3/7] staging/gdm72xx: Use netdev_ or pr_ printks in netlink_k.c

2012-10-29 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... and add pr_fmt. Signed-off-by: YAMANE Toshiaki --- drivers/staging/gdm72xx/netlink_k.c | 23 +-- 1 file changed, 13 insertions(+), 10

[PATCH 4/7] staging/gdm72xx: Use dev_ printks in gdm_sdio.c

2012-10-29 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH 5/7] staging/gdm72xx: Use dev_ printks in sdio_boot.c

2012-10-29 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH 6/7] staging/gdm72xx: Use dev_ printks in gdm_usb.c

2012-10-29 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH 7/7] staging/gdm72xx: Use dev_ printks in usb_boot.c

2012-10-29 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging

[PATCH] staging/comedi: Use dev_ printks in drivers/me_daq.c

2012-10-05 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: quoted string split across lines Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/me_daq.c | 19 --- 1 file

[PATCH] staging/comedi: Use dev_ printks in drivers/adl_pci8164.c

2012-10-05 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_dbg(netdev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/adl_pci8164.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff

[PATCH] staging/comedi: Use dev_ printks in drivers/quatech_daqp_cs.c

2012-10-05 Thread YAMANE Toshiaki
. Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/quatech_daqp_cs.c | 34 ++ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/drivers/staging/comedi/drivers/quatech_daqp_cs.c b/drivers/staging/comedi/drivers/quatech_daqp_cs.c index 3e276f7

[PATCH] staging/comedi: Use dev_ printks in rtd520.c

2012-10-05 Thread YAMANE Toshiaki
fixed below checkpatch warning. -Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/rtd520.c | 25 + 1 file changed, 13 insertions(+), 12 deletions(-) diff

[PATCH] staging/comedi: Use dev_ printks in drivers/usbdux.c

2012-10-08 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/usbdux.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a

[PATCH] staging/comedi: Use dev_ printks in drivers/ni_daq_dio24.c

2012-10-08 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/ni_daq_dio24.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[PATCH] staging/comedi: Use dev_ printks in drivers/ni_pcimio.c

2012-10-08 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/ni_pcimio.c | 20 1 file changed, 12 insertions(+), 8 deletions

[PATCH] staging/comedi: Use dev_ printks in drivers/ii_pci20kc.c

2012-10-08 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Signed-off-by: YAMANE Toshiaki --- drivers

[PATCH] staging/comedi: Use pr_ or dev_ printks in drivers/dt9812.c

2012-10-09 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... and added pr_fmt. Signed-off-by: YAMANE Toshiaki

[PATCH] staging/comedi: Use pr_ or dev_ printks in drivers/unioxx5.c

2012-10-09 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... and added pr_fmt. Signed-off-by: YAMANE Toshiaki

[PATCH] staging/comedi: Use pr_ or dev_ printks in drivers/serial2002.c

2012-10-10 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... and added pr_fmt. Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/serial2002.c |7 +-- 1 file changed, 5 insertions(+), 2 deletions

[PATCH] staging/comedi: Use pr_ or dev_ printks in drivers/gsc_hdpi.c

2012-10-10 Thread YAMANE Toshiaki
fixed below checkpatch warning. - WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ... and added pr_fmt. Signed-off-by: YAMANE Toshiaki --- drivers/staging/comedi/drivers/gsc_hpdi.c | 31 +++-- 1 file changed, 16

[PATCH] staging/comedi: Use pr_ or dev_ printks in drivers/usbduxfast.c

2012-10-10 Thread YAMANE Toshiaki
fixed below checkpatch warnings. - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... - WARNING: Prefer netdev_info(netdev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... and added pr_fmt. Signed-off-by: YAMANE Toshiaki

Re: [PATCH] staging/serqt_usb2: Refactor qt_status_change_check() in serqt_usb2.c

2012-11-30 Thread YAMANE Toshiaki
On Fri, Nov 30, 2012 at 5:25 PM, Dan Carpenter wrote: > On Thu, Nov 29, 2012 at 06:10:26PM -0800, Greg Kroah-Hartman wrote: >> On Thu, Nov 29, 2012 at 01:57:56PM +0900, YAMANE Toshiaki wrote: >> > >> > - ProcessLin

[PATCH 1/3] staging/rtl8187se: Fix spacing coding style in ieee80211/dot11d.c

2012-11-30 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: spaces required around that '=' (ctx:VxV) - ERROR: spaces required around that '<=' (ctx:VxV) - ERROR: space required after that ',' (ctx:VxV) Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/dot11d.c

[PATCH 2/3] staging/rtl8187se: Fix spacing coding style in ieee80211/dot11d.c

2012-11-30 Thread YAMANE Toshiaki
#x27; Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/dot11d.c | 57 +++--- 1 file changed, 23 insertions(+), 34 deletions(-) diff --git a/drivers/staging/rtl8187se/ieee80211/dot11d.c b/drivers/staging/rtl8187se/ieee80211/dot11d.c index 247916b..b61a66d

[PATCH 3/3] staging/rtl8187se: Fix spacing coding style in ieee80211/dot11d.c

2012-11-30 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: "foo * bar" should be "foo *bar" - ERROR: "(foo*)" should be "(foo *)" Signed-off-by: YAMANE Toshiaki --- drivers/staging/rtl8187se/ieee80211/dot11d.c | 12 ++-- 1 file changed, 6 insertions(+), 6 de

[PATCH 01/16] staging/omapdrm: Fix spacing coding style in omap_connector.c

2012-11-14 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: braces {} are not necessary for any arm of this statement - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_connector.c |8 +++- 1 file changed, 3 insertions(+), 5

[PATCH 02/16] staging/omapdrm: remove the unnecessary initialization of a local variable in omap_crtc.c

2012-11-14 Thread YAMANE Toshiaki
The following error fixed. - ERROR: do not initialise statics to 0 or NULL Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_crtc.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/omapdrm/omap_crtc.c b/drivers/staging/omapdrm/omap_crtc.c

[PATCH 03/16] staging/omapdrm: Fix spacing coding style in omap_crtc.c

2012-11-14 Thread YAMANE Toshiaki
The following warning fixed. - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_crtc.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/omapdrm/omap_crtc.c b/drivers

[PATCH 04/16] staging/omapdrm: Fix spacing coding style in omap_drv.c

2012-11-14 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_drv.c | 36 ++-- 1 file changed, 14 insertions(+), 22 deletions(-) diff --git a/drivers/staging

[PATCH 05/16] staging/omapdrm: Fix spacing coding style in omap_drv.h

2012-11-14 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: "foo * bar" should be "foo *bar" Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_drv.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/omapdrm/omap_drv.h b/drivers/staging/omap

[PATCH 06/16] staging/omapdrm: Fix spacing coding style in omap_drv.h

2012-11-14 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_drv.h |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/omapdrm/omap_drv.h b/drivers

[PATCH 07/16] staging/omapdrm: Fix spacing coding style in omap_encoder.c

2012-11-14 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_encoder.c |7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/staging/omapdrm/omap_encoder.c b

[PATCH 08/16] staging/omapdrm: Fix spacing coding style in omap_fb.c

2012-11-14 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_fb.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/staging/omapdrm/omap_fb.c b/drivers

[PATCH 09/16] staging/omapdrm: Fix spacing coding style in omap_gem.c

2012-11-14 Thread YAMANE Toshiaki
The following error fixed. - ERROR: "foo ** bar" should be "foo **bar" Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_gem.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/omapdrm/omap_gem.c b/drivers/staging/omap

[PATCH 10/16] staging/omapdrm: Fix spacing coding style in omap_gem.c

2012-11-14 Thread YAMANE Toshiaki
The following warnings fixed. - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_gem.c | 38 ++-- 1 file changed, 15 insertions(+), 23 deletions(-) diff --git a/drivers/staging

[PATCH 11/16] staging/omapdrm: Fix spacing coding style in omap_gem.c

2012-11-14 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: space prohibited after that '!' (ctx:BxW) Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_gem.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/omapdrm/omap_gem.c b/drivers/stagi

[PATCH 12/16] staging/omapdrm: Fix spacing coding style in omap_gem_dmabuf.c

2012-11-14 Thread YAMANE Toshiaki
The following errors fixed. - ERROR: "foo * bar" should be "foo *bar" Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_gem_dmabuf.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/omapdrm/omap_gem_dmabuf.c b/dri

[PATCH 13/16] staging/omapdrm: Fix spacing coding style in omap_gem_helper.c

2012-11-14 Thread YAMANE Toshiaki
The following error fixed. - ERROR: "foo ** bar" should be "foo **bar" Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_gem_helpers.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/omapdrm/omap_gem_helpers.c b/dri

[PATCH 14/16] staging/omapdrm: Fix spacing coding style in omap_gem_helper.c

2012-11-14 Thread YAMANE Toshiaki
The following warning fixed. - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_gem_helpers.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/omapdrm/omap_gem_helpers.c b

[PATCH 15/16] staging/omapdrm: Fix spacing coding style in omap_plane.c

2012-11-14 Thread YAMANE Toshiaki
The following warning fixed. - WARNING: braces {} are not necessary for single statement blocks Signed-off-by: YAMANE Toshiaki --- drivers/staging/omapdrm/omap_plane.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/omapdrm/omap_plane.c b/drivers

  1   2   >