Skip to content

Commit

Permalink
xen/xenbus: Fixed over 80 character limit issue
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Lisa Nguyen authored and Konrad Rzeszutek Wilk committed May 20, 2013
1 parent d7e5075 commit 3d645b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/xen/xenbus/xenbus_dev_backend.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ static long xenbus_alloc(domid_t domid)
return err;
}

static long xenbus_backend_ioctl(struct file *file, unsigned int cmd, unsigned long data)
static long xenbus_backend_ioctl(struct file *file, unsigned int cmd,
unsigned long data)
{
if (!capable(CAP_SYS_ADMIN))
return -EPERM;
Expand Down

0 comments on commit 3d645b0

Please sign in to comment.