[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1248949519-20858-1-git-send-email-sgayda2@uiuc.edu>
Date: Thu, 30 Jul 2009 05:25:19 -0500
From: Stoyan Gaydarov <sgayda2@...c.edu>
To: linux-kernel@...r.kernel.org
CC: Stoyan Gaydarov <sgayda2@...c.edu>, deller@....de,
kyle@...artin.ca, grundler@...isc-linux.org,
akpm@...ux-foundation.org, achiang@...com, bunk@...nel.org,
linux-parisc@...r.kernel.org
Subject: [PATCH 3/4] [parisc] fixed faulty check
This patche fixes a spelling error that has resulted from copy and pasting. The location of the error was found using a semantic patch but the semantic patch was not trying to find these errors. After looking things over it seemed logical that this change was needed. Please review it and then include the patch if it is in fact the correct change.
Signed-off-by: Stoyan Gaydarov <sgayda2@...c.edu>
---
drivers/parisc/lba_pci.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/parisc/lba_pci.c b/drivers/parisc/lba_pci.c
index ede6146..3aeb327 100644
--- a/drivers/parisc/lba_pci.c
+++ b/drivers/parisc/lba_pci.c
@@ -992,7 +992,7 @@ lba_pat_resources(struct parisc_device *pa_dev, struct lba_device *lba_dev)
return;
io_pdc_cell = kzalloc(sizeof(pdc_pat_cell_mod_maddr_block_t), GFP_KERNEL);
- if (!pa_pdc_cell) {
+ if (!io_pdc_cell) {
kfree(pa_pdc_cell);
return;
}
--
1.6.3.3
--
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