diff options
author | Lisa Nguyen <lisa@xenapiadmin.com> | 2013-05-16 02:47:11 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2013-05-20 14:14:46 -0400 |
commit | d7e5075044f6c4e85f671cb88f99187509f4a2b0 (patch) | |
tree | ae7c4adc519428db553f06b25355e5cde606e29d /drivers/xen | |
parent | 37d46e152e4c71cd772085912f1c7bf06839f739 (diff) |
xen/xenbus: Fixed indentation error in switch case
Fixed the indentation error in the switch case in
xenbus_dev_backend.c
Signed-off-by: Lisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/xenbus/xenbus_dev_backend.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/drivers/xen/xenbus/xenbus_dev_backend.c b/drivers/xen/xenbus/xenbus_dev_backend.c index d73000800762..120ae159fdad 100644 --- a/drivers/xen/xenbus/xenbus_dev_backend.c +++ b/drivers/xen/xenbus/xenbus_dev_backend.c | |||
@@ -76,16 +76,14 @@ static long xenbus_backend_ioctl(struct file *file, unsigned int cmd, unsigned l | |||
76 | return -EPERM; | 76 | return -EPERM; |
77 | 77 | ||
78 | switch (cmd) { | 78 | switch (cmd) { |
79 | case IOCTL_XENBUS_BACKEND_EVTCHN: | 79 | case IOCTL_XENBUS_BACKEND_EVTCHN: |
80 | if (xen_store_evtchn > 0) | 80 | if (xen_store_evtchn > 0) |
81 | return xen_store_evtchn; | 81 | return xen_store_evtchn; |
82 | return -ENODEV; | 82 | return -ENODEV; |
83 | 83 | case IOCTL_XENBUS_BACKEND_SETUP: | |
84 | case IOCTL_XENBUS_BACKEND_SETUP: | 84 | return xenbus_alloc(data); |
85 | return xenbus_alloc(data); | 85 | default: |
86 | 86 | return -ENOTTY; | |
87 | default: | ||
88 | return -ENOTTY; | ||
89 | } | 87 | } |
90 | } | 88 | } |
91 | 89 | ||