Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 450d6e30 authored by Stoyan Gaydarov's avatar Stoyan Gaydarov Committed by Helge Deller
Browse files

parisc: fixed faulty check in lba_pci



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.

Signed-off-by: default avatarStoyan Gaydarov <sgayda2@uiuc.edu>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent 447c233d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}