1
0
Fork 0

[CAN]: Fix plain integer definitions in userspace header.

This patch fixes the use of plain integers instead of __u32 in a struct
that is visible from kernel space and user space.

Thanks to Sam Ravnborg for pointing out the wrong plain int usage.

Signed-off-by: Oliver Hartkopp <oliver@hartkopp.net>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Oliver Hartkopp 2007-12-27 16:50:06 -08:00 committed by David S. Miller
parent ccb2963799
commit 4195e31780
1 changed files with 4 additions and 4 deletions

View File

@ -26,12 +26,12 @@
* @frames: array of CAN frames.
*/
struct bcm_msg_head {
int opcode;
int flags;
int count;
__u32 opcode;
__u32 flags;
__u32 count;
struct timeval ival1, ival2;
canid_t can_id;
int nframes;
__u32 nframes;
struct can_frame frames[0];
};