Commit 0ff4fdf0 authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge Committed by Konrad Rzeszutek Wilk

xen/xenbus: clean up noise in xenbus_probe_frontend.c

Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: default avatarIan Campbell <ian.campbell@citrix.com>
[corresponds to 616ff7a06a3f in git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git]
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent b5d33d08
...@@ -249,10 +249,8 @@ static int frontend_probe_and_watch(struct notifier_block *notifier, ...@@ -249,10 +249,8 @@ static int frontend_probe_and_watch(struct notifier_block *notifier,
{ {
/* Enumerate devices in xenstore and watch for changes. */ /* Enumerate devices in xenstore and watch for changes. */
xenbus_probe_devices(&xenbus_frontend); xenbus_probe_devices(&xenbus_frontend);
printk(KERN_CRIT "%s devices probed ok\n", __func__);
register_xenbus_watch(&fe_watch); register_xenbus_watch(&fe_watch);
printk(KERN_CRIT "%s watch add ok ok\n", __func__);
printk(KERN_CRIT "%s all done\n", __func__);
return NOTIFY_DONE; return NOTIFY_DONE;
} }
...@@ -268,11 +266,8 @@ static int __init xenbus_probe_frontend_init(void) ...@@ -268,11 +266,8 @@ static int __init xenbus_probe_frontend_init(void)
/* Register ourselves with the kernel bus subsystem */ /* Register ourselves with the kernel bus subsystem */
err = bus_register(&xenbus_frontend.bus); err = bus_register(&xenbus_frontend.bus);
if (err) { if (err)
printk(KERN_CRIT "%s didn't register bus!\n", __func__);
return err; return err;
}
printk(KERN_CRIT "%s bus registered ok\n", __func__);
register_xenstore_notifier(&xenstore_notifier); register_xenstore_notifier(&xenstore_notifier);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment