aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/powerpc/kernel/ibmebus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/ibmebus.c b/arch/powerpc/kernel/ibmebus.c
index 7697d5b8296e..53bf64623bd8 100644
--- a/arch/powerpc/kernel/ibmebus.c
+++ b/arch/powerpc/kernel/ibmebus.c
@@ -397,10 +397,10 @@ static ssize_t ibmebus_store_probe(struct bus_type *bus,
397 return -ENOMEM; 397 return -ENOMEM;
398 398
399 if (bus_find_device(&ibmebus_bus_type, NULL, path, 399 if (bus_find_device(&ibmebus_bus_type, NULL, path,
400 ibmebus_match_path)) { 400 ibmebus_match_path)) {
401 printk(KERN_WARNING "%s: %s has already been probed\n", 401 printk(KERN_WARNING "%s: %s has already been probed\n",
402 __FUNCTION__, path); 402 __FUNCTION__, path);
403 rc = -EINVAL; 403 rc = -EEXIST;
404 goto out; 404 goto out;
405 } 405 }
406 406