* [PATCH] ARM: OMAP: Fix warning in omap-keypad
@ 2006-10-27 16:29 Dirk Behme
0 siblings, 0 replies; only message in thread
From: Dirk Behme @ 2006-10-27 16:29 UTC (permalink / raw)
To: linux-omap-open-source
[-- Attachment #1: Type: text/plain, Size: 333 bytes --]
Fix warning
rivers/input/keyboard/omap-keypad.c: In function
'omap_kp_probe':
drivers/input/keyboard/omap-keypad.c:450: warning: 'row_idx'
is used uninitialized in this function
drivers/input/keyboard/omap-keypad.c:453: warning: 'col_idx'
is used uninitialized in this function
Signed-off-by: Dirk Behme <dirk.behme_at_gmail.com>
[-- Attachment #2: omap_keypad_warning_patch.txt --]
[-- Type: text/plain, Size: 623 bytes --]
Index: linux-osk/drivers/input/keyboard/omap-keypad.c
===================================================================
--- linux-osk.orig/drivers/input/keyboard/omap-keypad.c
+++ linux-osk/drivers/input/keyboard/omap-keypad.c
@@ -317,7 +317,7 @@ static int __init omap_kp_probe(struct p
struct omap_kp *omap_kp;
struct input_dev *input_dev;
struct omap_kp_platform_data *pdata = pdev->dev.platform_data;
- int i, col_idx, row_idx, irq_idx, ret;
+ int i, col_idx = 0, row_idx = 0, irq_idx, ret;
if (!pdata->rows || !pdata->cols || !pdata->keymap) {
printk(KERN_ERR "No rows, cols or keymap from pdata\n");
[-- Attachment #3: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-10-27 16:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-27 16:29 [PATCH] ARM: OMAP: Fix warning in omap-keypad Dirk Behme
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox