[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1333357695-6519-1-git-send-email-corone.il.han@gmail.com>
Date: Mon, 2 Apr 2012 18:08:15 +0900
From: Il Han <corone.il.han@...il.com>
To: Jarod Wilson <jarod@...sonet.com>
Cc: linux-kernel@...r.kernel.org, Il Han <corone.il.han@...il.com>
Subject: [PATCH] lirc: wrong data type for a variable.
The data type of the variable sense is int.
Correct it.
Signed-off-by: Il Han <corone.il.han@...il.com>
---
drivers/staging/media/lirc/lirc_serial.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/media/lirc/lirc_serial.c b/drivers/staging/media/lirc/lirc_serial.c
index 3295ea6..a172c96 100644
--- a/drivers/staging/media/lirc/lirc_serial.c
+++ b/drivers/staging/media/lirc/lirc_serial.c
@@ -1292,7 +1292,7 @@ MODULE_PARM_DESC(irq, "Interrupt (4 or 3)");
module_param(share_irq, bool, S_IRUGO);
MODULE_PARM_DESC(share_irq, "Share interrupts (0 = off, 1 = on)");
-module_param(sense, bool, S_IRUGO);
+module_param(sense, int, S_IRUGO);
MODULE_PARM_DESC(sense, "Override autodetection of IR receiver circuit"
" (0 = active high, 1 = active low )");
--
1.7.4.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists