mirror of https://gitee.com/openkylin/linux.git
staging: greybus: Fixed alignment issue in hid.c
This change fixes a checkpatch CHECK style issue for "Alignment should match open parenthesis". Signed-off-by: Pritthijit Nath <pritthijit.nath@icloud.com> Link: https://lore.kernel.org/r/20210212081835.9497-1-pritthijit.nath@icloud.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
314fd52f01
commit
a2ea4e1d90
|
@ -221,8 +221,8 @@ static void gb_hid_init_reports(struct gb_hid *ghid)
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __gb_hid_get_raw_report(struct hid_device *hid,
|
static int __gb_hid_get_raw_report(struct hid_device *hid,
|
||||||
unsigned char report_number, __u8 *buf, size_t count,
|
unsigned char report_number, __u8 *buf, size_t count,
|
||||||
unsigned char report_type)
|
unsigned char report_type)
|
||||||
{
|
{
|
||||||
struct gb_hid *ghid = hid->driver_data;
|
struct gb_hid *ghid = hid->driver_data;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
Loading…
Reference in New Issue