diff options
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/xenbus/xenbus_probe_backend.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/xen/xenbus/xenbus_probe_backend.c b/drivers/xen/xenbus/xenbus_probe_backend.c index a3cc5351fe29..9b9dd36bb1c4 100644 --- a/drivers/xen/xenbus/xenbus_probe_backend.c +++ b/drivers/xen/xenbus/xenbus_probe_backend.c | |||
@@ -267,10 +267,8 @@ static int backend_probe_and_watch(struct notifier_block *notifier, | |||
267 | { | 267 | { |
268 | /* Enumerate devices in xenstore and watch for changes. */ | 268 | /* Enumerate devices in xenstore and watch for changes. */ |
269 | xenbus_probe_devices(&xenbus_backend); | 269 | xenbus_probe_devices(&xenbus_backend); |
270 | printk(KERN_CRIT "%s devices probed ok\n", __func__); | ||
271 | register_xenbus_watch(&be_watch); | 270 | register_xenbus_watch(&be_watch); |
272 | printk(KERN_CRIT "%s watch add ok ok\n", __func__); | 271 | |
273 | printk(KERN_CRIT "%s all done\n", __func__); | ||
274 | return NOTIFY_DONE; | 272 | return NOTIFY_DONE; |
275 | } | 273 | } |
276 | 274 | ||
@@ -285,11 +283,8 @@ static int __init xenbus_probe_backend_init(void) | |||
285 | 283 | ||
286 | /* Register ourselves with the kernel bus subsystem */ | 284 | /* Register ourselves with the kernel bus subsystem */ |
287 | err = bus_register(&xenbus_backend.bus); | 285 | err = bus_register(&xenbus_backend.bus); |
288 | if (err) { | 286 | if (err) |
289 | printk(KERN_CRIT "%s didn't register bus!\n", __func__); | ||
290 | return err; | 287 | return err; |
291 | } | ||
292 | printk(KERN_CRIT "%s bus registered ok\n", __func__); | ||
293 | 288 | ||
294 | register_xenstore_notifier(&xenstore_notifier); | 289 | register_xenstore_notifier(&xenstore_notifier); |
295 | 290 | ||