diff options
| author | David S. Miller <davem@davemloft.net> | 2015-10-14 18:36:58 -0700 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2015-10-14 18:36:58 -0700 |
| commit | c3503357fb71af9b215541e1959a7db9325c1f0f (patch) | |
| tree | cb0663f96dae37b1b05eeaf179a5bfcbf7f0335d /include/uapi/linux | |
| parent | 4568637f7a20bbb1dcbf8ada56de08f6c940bcbd (diff) | |
| parent | 42160a041db89807691b2a3fbf42e36a98b6019e (diff) | |
Merge tag 'linux-can-next-for-4.4-20151013' of git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next
Marc Kleine-Budde says:
====================
pull-request: can-next 2015-09-17
this is a pull request of 4 patches for net-next/master.
Two patches are by Gerhard Bertelsmann, fixing some problems in the
sun4i driver. The patch by Arnd Bergmann stops using timeval for the
CAN broadcast manager. The last patch by Alexandre Belloni removes the
otherwise unused struct at91_can_data from the driver.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/can/bcm.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/uapi/linux/can/bcm.h b/include/uapi/linux/can/bcm.h index 89ddb9dc9bdf..7a291dc1ff15 100644 --- a/include/uapi/linux/can/bcm.h +++ b/include/uapi/linux/can/bcm.h @@ -47,6 +47,11 @@ #include <linux/types.h> #include <linux/can.h> +struct bcm_timeval { + long tv_sec; + long tv_usec; +}; + /** * struct bcm_msg_head - head of messages to/from the broadcast manager * @opcode: opcode, see enum below. @@ -62,7 +67,7 @@ struct bcm_msg_head { __u32 opcode; __u32 flags; __u32 count; - struct timeval ival1, ival2; + struct bcm_timeval ival1, ival2; canid_t can_id; __u32 nframes; struct can_frame frames[0]; |
