[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1222200087-11533-1-git-send-email-jacmet@sunsite.dk>
Date: Tue, 23 Sep 2008 22:01:27 +0200
From: Peter Korsgaard <jacmet@...site.dk>
To: gregkh@...e.de, dbrownell@...rs.sourceforge.net,
linux-kernel@...r.kernel.org
Cc: Peter Korsgaard <jacmet@...site.dk>
Subject: [PATCH] drivers/base: make bus_find_device_by_name() more robust
Use sysfs_streq() in bus_find_device_by_name() so trailing newlines
are ignored (E.G. in bind/unbind).
Signed-off-by: Peter Korsgaard <jacmet@...site.dk>
---
drivers/base/bus.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index ef522ae..39b9b58 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -333,9 +333,7 @@ static int match_name(struct device *dev, void *data)
{
const char *name = data;
- if (strcmp(name, dev->bus_id) == 0)
- return 1;
- return 0;
+ return sysfs_streq(name, dev->bus_id);
}
/**
--
1.5.6.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