aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/can
diff options
context:
space:
mode:
authorThomas Körper <thomas.koerper@esd.eu>2015-03-16 09:48:29 +0100
committerMarc Kleine-Budde <mkl@pengutronix.de>2015-03-22 23:50:12 +0100
commit6d5a7a65a928d317c8767613d98ce38bb62f23fa (patch)
treec146ac8233156b3f86b2296fad9deff441d25621 /drivers/net/can
parentcan: add combined rx/tx LED trigger support (diff)
downloadlinux-dev-6d5a7a65a928d317c8767613d98ce38bb62f23fa.tar.xz
linux-dev-6d5a7a65a928d317c8767613d98ce38bb62f23fa.zip
can: esd_usb2: Fix sparse warnings
The hnd field of the structs does not need to be __le32: the device just returns the value without using it itself. Signed-off-by: Thomas Körper <thomas.koerper@esd.eu> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'drivers/net/can')
-rw-r--r--drivers/net/can/usb/esd_usb2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/can/usb/esd_usb2.c b/drivers/net/can/usb/esd_usb2.c
index bacca0bd89c1..411c1af92c62 100644
--- a/drivers/net/can/usb/esd_usb2.c
+++ b/drivers/net/can/usb/esd_usb2.c
@@ -139,7 +139,7 @@ struct tx_msg {
u8 cmd;
u8 net;
u8 dlc;
- __le32 hnd;
+ u32 hnd; /* opaque handle, not used by device */
__le32 id; /* upper 3 bits contain flags */
u8 data[8];
};
@@ -149,7 +149,7 @@ struct tx_done_msg {
u8 cmd;
u8 net;
u8 status;
- __le32 hnd;
+ u32 hnd; /* opaque handle, not used by device */
__le32 ts;
};