aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/xenbus/xenbus_probe_frontend.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen/xenbus/xenbus_probe_frontend.c')
-rw-r--r--drivers/xen/xenbus/xenbus_probe_frontend.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/xen/xenbus/xenbus_probe_frontend.c b/drivers/xen/xenbus/xenbus_probe_frontend.c
index 3a4236524768..60c311ab3190 100644
--- a/drivers/xen/xenbus/xenbus_probe_frontend.c
+++ b/drivers/xen/xenbus/xenbus_probe_frontend.c
@@ -249,10 +249,8 @@ static int frontend_probe_and_watch(struct notifier_block *notifier,
249{ 249{
250 /* Enumerate devices in xenstore and watch for changes. */ 250 /* Enumerate devices in xenstore and watch for changes. */
251 xenbus_probe_devices(&xenbus_frontend); 251 xenbus_probe_devices(&xenbus_frontend);
252 printk(KERN_CRIT "%s devices probed ok\n", __func__);
253 register_xenbus_watch(&fe_watch); 252 register_xenbus_watch(&fe_watch);
254 printk(KERN_CRIT "%s watch add ok ok\n", __func__); 253
255 printk(KERN_CRIT "%s all done\n", __func__);
256 return NOTIFY_DONE; 254 return NOTIFY_DONE;
257} 255}
258 256
@@ -268,11 +266,8 @@ static int __init xenbus_probe_frontend_init(void)
268 266
269 /* Register ourselves with the kernel bus subsystem */ 267 /* Register ourselves with the kernel bus subsystem */
270 err = bus_register(&xenbus_frontend.bus); 268 err = bus_register(&xenbus_frontend.bus);
271 if (err) { 269 if (err)
272 printk(KERN_CRIT "%s didn't register bus!\n", __func__);
273 return err; 270 return err;
274 }
275 printk(KERN_CRIT "%s bus registered ok\n", __func__);
276 271
277 register_xenstore_notifier(&xenstore_notifier); 272 register_xenstore_notifier(&xenstore_notifier);
278 273