Skip to content

Commit

Permalink
staging: greybus: authentication.c: Fix alignment should match open p…
Browse files Browse the repository at this point in the history
…arenthesis

Fix the following error found by checkpatch.pl:
CHECK: Alignment should match open parenthesis
+static int cap_ioctl(struct gb_cap *cap, unsigned int cmd,
+			 void __user *buf)

Signed-off-by: Kamal Heib <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
Kamalheib authored and gregkh committed Jan 22, 2018
1 parent 783778e commit ea0af4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/greybus/authentication.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ static int cap_release(struct inode *inode, struct file *file)
}

static int cap_ioctl(struct gb_cap *cap, unsigned int cmd,
void __user *buf)
void __user *buf)
{
struct cap_ioc_get_endpoint_uid endpoint_uid;
struct cap_ioc_get_ims_certificate *ims_cert;
Expand Down

0 comments on commit ea0af4b

Please sign in to comment.