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
...@@ -80,10 +80,8 @@ static long xenbus_backend_ioctl(struct file *file, unsigned int cmd, unsigned l ...@@ -80,10 +80,8 @@ static long xenbus_backend_ioctl(struct file *file, unsigned int cmd, unsigned l
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: default:
return -ENOTTY; 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