* [PATCH] video/w100fb: ignore void return value / fix build failure
@ 2010-07-28 18:29 Peter Hüwe
2010-07-28 19:02 ` Henrik Kretzschmar
0 siblings, 1 reply; 2+ messages in thread
From: Peter Hüwe @ 2010-07-28 18:29 UTC (permalink / raw)
To: linux-arm-kernel
From: Peter Huewe <peterhuewe@gmx.de>
This patch fixes a build failure [1] (error: void value not ignored as
it ought to be) by removing an assignment of a void return value.
The functionality of the code is not changed.
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
---
KernelVersion: linux-next-20100728
References:
[1] http://kisskb.ellerman.id.au/kisskb/buildresult/2980912/
drivers/video/w100fb.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/video/w100fb.c b/drivers/video/w100fb.c
index e66b8b1..d8b12c3 100644
--- a/drivers/video/w100fb.c
+++ b/drivers/video/w100fb.c
@@ -858,9 +858,9 @@ unsigned long w100fb_gpio_read(int port)
void w100fb_gpio_write(int port, unsigned long value)
{
if (port=W100_GPIO_PORT_A)
- value = writel(value, remapped_regs + mmGPIO_DATA);
+ writel(value, remapped_regs + mmGPIO_DATA);
else
- value = writel(value, remapped_regs + mmGPIO_DATA2);
+ writel(value, remapped_regs + mmGPIO_DATA2);
}
EXPORT_SYMBOL(w100fb_gpio_read);
EXPORT_SYMBOL(w100fb_gpio_write);
--
1.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] video/w100fb: ignore void return value / fix build failure
2010-07-28 18:29 [PATCH] video/w100fb: ignore void return value / fix build failure Peter Hüwe
@ 2010-07-28 19:02 ` Henrik Kretzschmar
0 siblings, 0 replies; 2+ messages in thread
From: Henrik Kretzschmar @ 2010-07-28 19:02 UTC (permalink / raw)
To: linux-arm-kernel
Am 28.07.2010 20:29, schrieb Peter Hüwe:
> From: Peter Huewe <peterhuewe@gmx.de>
>
> This patch fixes a build failure [1] (error: void value not ignored as
> it ought to be) by removing an assignment of a void return value.
> The functionality of the code is not changed.
>
> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Ached-by: Henrik Kretzschmar <henne@nachtwindheim.de>
> ---
> KernelVersion: linux-next-20100728
> References:
> [1] http://kisskb.ellerman.id.au/kisskb/buildresult/2980912/
>
> drivers/video/w100fb.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/video/w100fb.c b/drivers/video/w100fb.c
> index e66b8b1..d8b12c3 100644
> --- a/drivers/video/w100fb.c
> +++ b/drivers/video/w100fb.c
> @@ -858,9 +858,9 @@ unsigned long w100fb_gpio_read(int port)
> void w100fb_gpio_write(int port, unsigned long value)
> {
> if (port=W100_GPIO_PORT_A)
> - value = writel(value, remapped_regs + mmGPIO_DATA);
> + writel(value, remapped_regs + mmGPIO_DATA);
> else
> - value = writel(value, remapped_regs + mmGPIO_DATA2);
> + writel(value, remapped_regs + mmGPIO_DATA2);
> }
> EXPORT_SYMBOL(w100fb_gpio_read);
> EXPORT_SYMBOL(w100fb_gpio_write);
--
To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-07-28 19:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-28 18:29 [PATCH] video/w100fb: ignore void return value / fix build failure Peter Hüwe
2010-07-28 19:02 ` Henrik Kretzschmar
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).