From: Johan Hovold Date: Tue, 22 Dec 2015 16:55:53 +0000 (+0100) Subject: greybus: es2: clean up csi-config request X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a5a7723a0d3762387fc765e69f0ab61fd4d47f00;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git greybus: es2: clean up csi-config request Use __packed and __u8 for csi-config request that is going out on the wire. Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/es2.c b/drivers/staging/greybus/es2.c index 7b07ab70717b..af5d7496c6be 100644 --- a/drivers/staging/greybus/es2.c +++ b/drivers/staging/greybus/es2.c @@ -135,12 +135,12 @@ struct cport_to_ep { }; struct es2_ap_csi_config_request { - u8 csi_id; - u8 clock_mode; - u8 num_lanes; - u8 padding; + __u8 csi_id; + __u8 clock_mode; + __u8 num_lanes; + __u8 padding; __le32 bus_freq; -} __attribute__((__packed__)); +} __packed; static inline struct es2_ap_dev *hd_to_es2(struct gb_host_device *hd) {