From c89ac15f80f404d36fb19884d18062516b824ae7 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Fri, 15 Oct 2010 09:40:29 +0200 Subject: [PATCH] lib/driver.c: sparse fixes Signed-off-by: Sascha Hauer --- lib/driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/driver.c b/lib/driver.c index 66d8fee38..edde1dc2f 100644 --- a/lib/driver.c +++ b/lib/driver.c @@ -54,7 +54,7 @@ struct device_d *get_device_by_name(const char *name) return NULL; } -struct device_d *get_device_by_name_id(const char *name, int id) +static struct device_d *get_device_by_name_id(const char *name, int id) { struct device_d *dev; @@ -315,7 +315,7 @@ static int do_devinfo(struct command *cmdtp, int argc, char *argv[]) for_each_driver(drv) printf("%10s\n",drv->name); } else { - struct device_d *dev = get_device_by_name(argv[1]); + dev = get_device_by_name(argv[1]); if (!dev) { printf("no such device: %s\n",argv[1]);