lkml.org 
[lkml]   [2013]   [Oct]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v2 5/5] drivers: usb: core: devio.c: Put arguments on new line
    Date
    To fit the 80-cols convention, this patch moves the arguments (the
    second and third one) for driver->unlocked_ioctl() onto a new line.

    Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
    ---
    drivers/usb/core/devio.c | 3 ++-
    1 file changed, 2 insertions(+), 1 deletion(-)

    diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c
    index 9761a27..0387948 100644
    --- a/drivers/usb/core/devio.c
    +++ b/drivers/usb/core/devio.c
    @@ -1870,7 +1870,8 @@ static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
    if (driver == NULL || driver->unlocked_ioctl == NULL) {
    retval = -ENOTTY;
    } else {
    - retval = driver->unlocked_ioctl(intf, ctl->ioctl_code, buf);
    + retval = driver->unlocked_ioctl(intf,
    + ctl->ioctl_code, buf);
    if (retval == -ENOIOCTLCMD)
    retval = -ENOTTY;
    }
    --
    1.8.4


    \
     
     \ /
      Last update: 2013-10-14 22:21    [W:2.435 / U:0.820 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site