[PATCH 1/8] ats: removed parentheses after return

2014-04-18 Thread Ryan Desfosses
change made to resolve following checkpatch message: ERROR: return is not a function, parentheses are not required branch: Linux 3.15-rc1 Signed-off-by: Ryan Desfosses --- drivers/pci/ats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/ats.c b/drivers/pci

[PATCH 3/8] htirq: moved EXPORT_SYMBOL so that it immediately followed its function/variable

2014-04-18 Thread Ryan Desfosses
change made to resolve following checkpatch message: WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable branch: Linux 3.15-rc1 Signed-off-by: Ryan Desfosses --- drivers/pci/htirq.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/pci

[PATCH 2/8] bus: moved EXPORT_SYMBOL so that it immediately followed its function/variable

2014-04-18 Thread Ryan Desfosses
change made to resolve following checkpatch message: WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable branch: Linux 3.15-rc1 Signed-off-by: Ryan Desfosses --- drivers/pci/bus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/pci

[PATCH 4/8] htirq: removed space after open parenthesis

2014-04-18 Thread Ryan Desfosses
change made to resolve following checkpatch message: ERROR: space prohibited after that open parenthesis '(' branch: Linux 3.15-rc1 Signed-off-by: Ryan Desfosses --- drivers/pci/htirq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/htirq.c b/d

[PATCH 0/8] patch series

2014-04-18 Thread Ryan Desfosses
There are eight patches in this series. All changes are trivial with no dependencies or required order. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htm

[PATCH 6/8] pci-driver: added or removed a space to resolve checkpatch messages

2014-04-18 Thread Ryan Desfosses
changes made to resolve following messages: ERROR: spaces required around that '=' (ctx:VxV) ERROR: "foo * bar" should be "foo *bar" ERROR: spaces required around that '<=' (ctx:VxV) ERROR: space required before the open parenthesis '('

[PATCH 5/8] msi: merged quoted strings

2014-04-18 Thread Ryan Desfosses
change made to resolve following checkpatch message: WARNING: quoted string split across lines branch: Linux 3.15-rc1 Signed-off-by: Ryan Desfosses --- drivers/pci/msi.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index

[PATCH 8/8] pci-stub: added spaces around equal sign

2014-04-18 Thread Ryan Desfosses
change made to resolve following checkpatch message ERROR: spaces required around that '=' (ctx:VxV) branch: Linux 3.15-rc1 Signed-off-by: Ryan Desfosses --- drivers/pci/pci-stub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci-stub.c b/drive

[PATCH 7/8] pci-driver: moved EXPORT_SYMBOL so that it immediately followed its function/variable

2014-04-18 Thread Ryan Desfosses
change made to resolve following checkpatch message: WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/aariable branch: Linux 3.15-rc1 Signed-off-by: Ryan Desfosses --- drivers/pci/pci-driver.c | 16 1 file changed, 8 insertions(+), 8 deletions

[PATCH 0/8] patch series

2014-04-18 Thread Ryan Desfosses
There are eight patches in this series. All changes are trivial with no dependencies or required order. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htm

[PATCHv3] pci: moved EXPORT_SYMBOL so that it immediately followed its function/variable

2014-04-14 Thread Ryan Desfosses
change made to resolve following checkpatch message: WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable branch: Linux 3.14 Signed-off-by: Ryan Desfosses --- drivers/pci/pci.c | 75 - drivers

[PATCH] access: moved trailing statements and added spaces after ','

2014-04-12 Thread Ryan Desfosses
changes made to resolve following checkpatch messages: ERROR: space required after that ',' (ctx:VxV) ERROR: trailing statements should be on next line branch: 3.14 Signed-off-by: Ryan Desfosses --- drivers/pci/access.c | 18 ++ 1 file changed, 10 insertions(+), 8

[PATCHv2] pci: added or removed a space to resolve checkpatch message

2014-04-10 Thread Ryan Desfosses
changes made to resolve following messages: WARNING: please, no spaces at the start of a line ERROR: space prohibited after that '!' (ctx:BxW) ERROR: space required before the open parenthesis '(' Signed-off-by: Ryan Desfosses --- drivers/pci/pci.c | 12 ++-

[PATCHv2] pci: changed "foo* bar" to "foo *bar"

2014-04-10 Thread Ryan Desfosses
change made to resolve following checkpatch message: drivers/pci/pci.c:109: ERROR: "foo* bar" should be "foo *bar" branch: Linux 3.14-rc8 Signed-off-by: Ryan Desfosses --- drivers/pci/pci.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers

[PATCH] pci: moved EXPORT_SYMBOL so that it immediately followed its function/variable

2014-04-07 Thread Ryan Desfosses
change made to resolve following checkpatch message: WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/aariable branch: Linux 3.14 Signed-off-by: Ryan Desfosses --- drivers/pci/pci.c | 71 --- 1 file

[PATCH] pci: changed '...pci_bus* bus' to '...pci_bus *bus'

2014-04-04 Thread Ryan Desfosses
change made to resolve following checkpatch message: drivers/pci/pci.c:109: ERROR: "foo* bar" should be "foo *bar" branch: Linux 3.14-rc8 Signed-off-by: Ryan Desfosses --- drivers/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci

[PATCH 2/2] pci: added space before the open parenthesis

2014-04-04 Thread Ryan Desfosses
change made to resolve checkpatch.pl error Signed-off-by: Ryan Desfosses --- drivers/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index fdbc294..56acb63 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -114,7 +114,7

[PATCH] pci: changed '...pci_bus* bus' to '...pci_bus *bus'

2014-03-31 Thread Ryan Desfosses
change made to resolve following checkpatch message: drivers/pci/pci.c:109: ERROR: "foo* bar" should be "foo *bar" --- drivers/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index fdbc294..a50d542 100644 --- a/drivers/p

[PATCH] pci: changed '...pci_bus* bus' to '...pci_bus *bus'

2014-03-28 Thread Ryan Desfosses
change made to resolve following checkpatch message: drivers/pci/pci.c:109: ERROR: "foo* bar" should be "foo *bar" --- drivers/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index fdbc294..a50d542 100644 --- a/drivers/p