public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] smc911x driver: cleanup smc911x_initialize()
@ 2010-01-21 21:29 Matthias Kaehlcke
  2010-01-21 23:01 ` Mike Frysinger
  0 siblings, 1 reply; 5+ messages in thread
From: Matthias Kaehlcke @ 2010-01-21 21:29 UTC (permalink / raw)
  To: u-boot

smc911x_initialize(): remove unecessary call to free() and
return 0 in case of failure instead of -1

Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
---
 drivers/net/smc911x.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c
index 5d51406..f2b5895 100644
--- a/drivers/net/smc911x.c
+++ b/drivers/net/smc911x.c
@@ -242,8 +242,7 @@ int smc911x_initialize(u8 dev_num, int base_addr)
 
 	dev = malloc(sizeof(*dev));
 	if (!dev) {
-		free(dev);
-		return -1;
+		return 0;
 	}
 	memset(dev, 0, sizeof(*dev));
 
-- 
1.6.3.1

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

end of thread, other threads:[~2010-01-22  9:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-21 21:29 [U-Boot] [PATCH] smc911x driver: cleanup smc911x_initialize() Matthias Kaehlcke
2010-01-21 23:01 ` Mike Frysinger
2010-01-22  6:18   ` Matthias Kaehlcke
2010-01-22  7:36     ` Ben Warren
2010-01-22  9:02       ` Matthias Kaehlcke

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