Commit d7e50750 authored by Lisa Nguyen's avatar Lisa Nguyen Committed by Konrad Rzeszutek Wilk

xen/xenbus: Fixed indentation error in switch case

Fixed the indentation error in the switch case in
xenbus_dev_backend.c
Signed-off-by: default avatarLisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent 37d46e15
...@@ -76,16 +76,14 @@ static long xenbus_backend_ioctl(struct file *file, unsigned int cmd, unsigned l ...@@ -76,16 +76,14 @@ static long xenbus_backend_ioctl(struct file *file, unsigned int cmd, unsigned l
return -EPERM; return -EPERM;
switch (cmd) { switch (cmd) {
case IOCTL_XENBUS_BACKEND_EVTCHN: case IOCTL_XENBUS_BACKEND_EVTCHN:
if (xen_store_evtchn > 0) if (xen_store_evtchn > 0)
return xen_store_evtchn; return xen_store_evtchn;
return -ENODEV; return -ENODEV;
case IOCTL_XENBUS_BACKEND_SETUP:
case IOCTL_XENBUS_BACKEND_SETUP: return xenbus_alloc(data);
return xenbus_alloc(data); default:
return -ENOTTY;
default:
return -ENOTTY;
} }
} }
......
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