From: Johan Hovold Date: Tue, 17 Mar 2015 17:24:28 +0000 (+0100) Subject: greybus: gpio: fix set-debounce request alignment X-Git-Tag: v4.14-rc1~2366^2~378^2~21^2~1684 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fcc4356de4601c83530928e05b041e4ac678fd6a;p=platform%2Fkernel%2Flinux-rpi.git greybus: gpio: fix set-debounce request alignment Fix alignment of the usec-field in the set-debounce request, which should follow the which-field without any inserted padding. Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/gpio.c b/drivers/staging/greybus/gpio.c index 4af5050..458565a 100644 --- a/drivers/staging/greybus/gpio.c +++ b/drivers/staging/greybus/gpio.c @@ -116,7 +116,7 @@ struct gb_gpio_set_value_request { struct gb_gpio_set_debounce_request { __u8 which; - __le16 usec; + __le16 usec __packed; }; /* debounce response has no payload */