* [PATCH 1/1] Char: moxa, fix compiler warning
@ 2008-03-30 8:42 Jiri Slaby
0 siblings, 0 replies; only message in thread
From: Jiri Slaby @ 2008-03-30 8:42 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel, Jiri Slaby
On CONFIG_MOXA_INTELLIO=y, this warning was emitted:
drivers/char/moxa.c: In function ‘moxa_init’:
drivers/char/moxa.c:1000: warning: unused variable ‘i’
Move it into the conditional section where is only used.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
---
drivers/char/moxa.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/char/moxa.c b/drivers/char/moxa.c
index 57616c1..1ab9517 100644
--- a/drivers/char/moxa.c
+++ b/drivers/char/moxa.c
@@ -997,7 +997,7 @@ static struct pci_driver moxa_pci_driver = {
static int __init moxa_init(void)
{
- unsigned int i, isabrds = 0;
+ unsigned int isabrds = 0;
int retval = 0;
printk(KERN_INFO "MOXA Intellio family driver version %s\n",
@@ -1029,6 +1029,7 @@ static int __init moxa_init(void)
#ifdef MODULE
{
struct moxa_board_conf *brd = moxa_boards;
+ unsigned int i;
for (i = 0; i < MAX_BOARDS; i++) {
if (!baseaddr[i])
break;
--
1.5.4.4
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-03-30 9:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-30 8:42 [PATCH 1/1] Char: moxa, fix compiler warning Jiri Slaby
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®