diff options
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/xenbus/xenbus_probe.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/xen/xenbus/xenbus_probe.c b/drivers/xen/xenbus/xenbus_probe.c index 0b769f7c4a48..4750de316ad3 100644 --- a/drivers/xen/xenbus/xenbus_probe.c +++ b/drivers/xen/xenbus/xenbus_probe.c | |||
@@ -185,13 +185,14 @@ static void otherend_changed(struct xenbus_watch *watch, | |||
185 | if (!dev->otherend || | 185 | if (!dev->otherend || |
186 | strncmp(dev->otherend, vec[XS_WATCH_PATH], | 186 | strncmp(dev->otherend, vec[XS_WATCH_PATH], |
187 | strlen(dev->otherend))) { | 187 | strlen(dev->otherend))) { |
188 | dev_dbg(&dev->dev, "Ignoring watch at %s", vec[XS_WATCH_PATH]); | 188 | dev_dbg(&dev->dev, "Ignoring watch at %s\n", |
189 | vec[XS_WATCH_PATH]); | ||
189 | return; | 190 | return; |
190 | } | 191 | } |
191 | 192 | ||
192 | state = xenbus_read_driver_state(dev->otherend); | 193 | state = xenbus_read_driver_state(dev->otherend); |
193 | 194 | ||
194 | dev_dbg(&dev->dev, "state is %d, (%s), %s, %s", | 195 | dev_dbg(&dev->dev, "state is %d, (%s), %s, %s\n", |
195 | state, xenbus_strstate(state), dev->otherend_watch.node, | 196 | state, xenbus_strstate(state), dev->otherend_watch.node, |
196 | vec[XS_WATCH_PATH]); | 197 | vec[XS_WATCH_PATH]); |
197 | 198 | ||