LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] staging: vt6655: mac.h: fix space prohibited before that ','
@ 2015-01-19 12:30 Mohamed Lotfy Hammad
2015-01-23 0:06 ` Aya Mahfouz
2015-01-25 11:41 ` Greg KH
0 siblings, 2 replies; 3+ messages in thread
From: Mohamed Lotfy Hammad @ 2015-01-19 12:30 UTC (permalink / raw)
To: devel
Cc: forest, gregkh, tvboxspy, guido, silvagustavosilva, gclement,
joe, linux-kernel, fred.chou.nd
This patch fixes the following checkpatch.pl error:
fix space prohibited before that ','
Signed-off-by: Mohamed Lotfy Hammad <mohamed.lotfy.hammad@gmail.com>
---
drivers/staging/vt6655/mac.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/vt6655/mac.h b/drivers/staging/vt6655/mac.h
index e1e7e10..4985c63 100644
--- a/drivers/staging/vt6655/mac.h
+++ b/drivers/staging/vt6655/mac.h
@@ -888,7 +888,7 @@ do { \
VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 1)
#define MACvReadMIBCounter(dwIoBase, pdwCounter) \
- VNSvInPortD(dwIoBase + MAC_REG_MIBCNTR , pdwCounter)
+ VNSvInPortD(dwIoBase + MAC_REG_MIBCNTR, pdwCounter)
#define MACvPwrEvntDisable(dwIoBase) \
VNSvOutPortW(dwIoBase + MAC_REG_WAKEUPEN0, 0x0000)
--
2.1.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] staging: vt6655: mac.h: fix space prohibited before that ','
2015-01-19 12:30 [PATCH] staging: vt6655: mac.h: fix space prohibited before that ',' Mohamed Lotfy Hammad
@ 2015-01-23 0:06 ` Aya Mahfouz
2015-01-25 11:41 ` Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Aya Mahfouz @ 2015-01-23 0:06 UTC (permalink / raw)
To: Mohamed Lotfy Hammad
Cc: devel, gclement, tvboxspy, gregkh, linux-kernel, forest, joe,
silvagustavosilva, fred.chou.nd
On Mon, Jan 19, 2015 at 02:30:25PM +0200, Mohamed Lotfy Hammad wrote:
> This patch fixes the following checkpatch.pl error:
> fix space prohibited before that ','
>
> Signed-off-by: Mohamed Lotfy Hammad <mohamed.lotfy.hammad@gmail.com>
Reviewed-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
> ---
> drivers/staging/vt6655/mac.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/vt6655/mac.h b/drivers/staging/vt6655/mac.h
> index e1e7e10..4985c63 100644
> --- a/drivers/staging/vt6655/mac.h
> +++ b/drivers/staging/vt6655/mac.h
> @@ -888,7 +888,7 @@ do { \
> VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 1)
>
> #define MACvReadMIBCounter(dwIoBase, pdwCounter) \
> - VNSvInPortD(dwIoBase + MAC_REG_MIBCNTR , pdwCounter)
> + VNSvInPortD(dwIoBase + MAC_REG_MIBCNTR, pdwCounter)
>
> #define MACvPwrEvntDisable(dwIoBase) \
> VNSvOutPortW(dwIoBase + MAC_REG_WAKEUPEN0, 0x0000)
> --
> 2.1.0
>
> _______________________________________________
> devel mailing list
> devel@linuxdriverproject.org
> http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] staging: vt6655: mac.h: fix space prohibited before that ','
2015-01-19 12:30 [PATCH] staging: vt6655: mac.h: fix space prohibited before that ',' Mohamed Lotfy Hammad
2015-01-23 0:06 ` Aya Mahfouz
@ 2015-01-25 11:41 ` Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2015-01-25 11:41 UTC (permalink / raw)
To: Mohamed Lotfy Hammad
Cc: devel, gclement, tvboxspy, linux-kernel, forest, joe,
silvagustavosilva, fred.chou.nd
On Mon, Jan 19, 2015 at 02:30:25PM +0200, Mohamed Lotfy Hammad wrote:
> This patch fixes the following checkpatch.pl error:
> fix space prohibited before that ','
>
> Signed-off-by: Mohamed Lotfy Hammad <mohamed.lotfy.hammad@gmail.com>
> Reviewed-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
> ---
> drivers/staging/vt6655/mac.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/vt6655/mac.h b/drivers/staging/vt6655/mac.h
> index e1e7e10..4985c63 100644
> --- a/drivers/staging/vt6655/mac.h
> +++ b/drivers/staging/vt6655/mac.h
> @@ -888,7 +888,7 @@ do { \
> VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 1)
>
> #define MACvReadMIBCounter(dwIoBase, pdwCounter) \
> - VNSvInPortD(dwIoBase + MAC_REG_MIBCNTR , pdwCounter)
> + VNSvInPortD(dwIoBase + MAC_REG_MIBCNTR, pdwCounter)
>
> #define MACvPwrEvntDisable(dwIoBase) \
> VNSvOutPortW(dwIoBase + MAC_REG_WAKEUPEN0, 0x0000)
Doesn't apply to my staging-next branch of staging.git :(
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-01-25 16:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-19 12:30 [PATCH] staging: vt6655: mac.h: fix space prohibited before that ',' Mohamed Lotfy Hammad
2015-01-23 0:06 ` Aya Mahfouz
2015-01-25 11:41 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).