Commit 3d645b02d9c6254caf51d9d78e6d9caf72990b33

Authored by Lisa Nguyen
Committed by Konrad Rzeszutek Wilk
1 parent d7e5075044

xen/xenbus: Fixed over 80 character limit issue

Fixed the format length of the xenbus_backend_ioctl()
function to meet the 80 character limit in
xenbus_dev_backend.c

Signed-off-by: Lisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

drivers/xen/xenbus/xenbus_dev_backend.c
... ... @@ -70,7 +70,8 @@
70 70 return err;
71 71 }
72 72  
73   -static long xenbus_backend_ioctl(struct file *file, unsigned int cmd, unsigned long data)
  73 +static long xenbus_backend_ioctl(struct file *file, unsigned int cmd,
  74 + unsigned long data)
74 75 {
75 76 if (!capable(CAP_SYS_ADMIN))
76 77 return -EPERM;