public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] hwspinlock/u8500: fix build error due to undefined label
@ 2011-11-06 13:14 Axel Lin
  2011-11-06 13:16 ` [PATCH 2/2] hwspinlock/u8500: include linux/module.h Axel Lin
  2011-11-06 16:27 ` [PATCH 1/2] hwspinlock/u8500: fix build error due to undefined label Ohad Ben-Cohen
  0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2011-11-06 13:14 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ohad Ben-Cohen, Mathieu Poirier, Linus Walleij

Fix below build error:

  CC      drivers/hwspinlock/u8500_hsem.o
drivers/hwspinlock/u8500_hsem.c: In function 'u8500_hsem_probe':
drivers/hwspinlock/u8500_hsem.c:113: error: label 'free_state' used but not defined

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 drivers/hwspinlock/u8500_hsem.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/hwspinlock/u8500_hsem.c b/drivers/hwspinlock/u8500_hsem.c
index 143461a..a120f14 100644
--- a/drivers/hwspinlock/u8500_hsem.c
+++ b/drivers/hwspinlock/u8500_hsem.c
@@ -108,10 +108,8 @@ static int __devinit u8500_hsem_probe(struct platform_device *pdev)
 		return -ENODEV;
 
 	io_base = ioremap(res->start, resource_size(res));
-	if (!io_base) {
-		ret = -ENOMEM;
-		goto free_state;
-	}
+	if (!io_base)
+		return -ENOMEM;
 
 	/* make sure protocol 1 is selected */
 	val = readl(io_base + HSEM_CTRL_REG);
-- 
1.7.5.4




^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-11-07  8:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-06 13:14 [PATCH 1/2] hwspinlock/u8500: fix build error due to undefined label Axel Lin
2011-11-06 13:16 ` [PATCH 2/2] hwspinlock/u8500: include linux/module.h Axel Lin
2011-11-07  8:08   ` Linus Walleij
2011-11-06 16:27 ` [PATCH 1/2] hwspinlock/u8500: fix build error due to undefined label Ohad Ben-Cohen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox