diff options
author | Vincent Mailhol <mailhol.vincent@wanadoo.fr> | 2021-03-06 14:40:40 +0900 |
---|---|---|
committer | Marc Kleine-Budde <mkl@pengutronix.de> | 2021-03-30 11:14:45 +0200 |
commit | 1d7750760b70ba8b0e641146eee1b3a343d1b292 (patch) | |
tree | 18a32fdd433f6d66cdfbb486426fc652777426ed /Kbuild | |
parent | c25cc7993243fdc00ab7e608e3764819538015ab (diff) | |
download | linux-1d7750760b70ba8b0e641146eee1b3a343d1b292.tar.gz linux-1d7750760b70ba8b0e641146eee1b3a343d1b292.tar.bz2 linux-1d7750760b70ba8b0e641146eee1b3a343d1b292.zip |
can: bittiming: add CAN_KBPS, CAN_MBPS and CAN_MHZ macros
Add three macro to simplify the readability of big bit timing numbers:
- CAN_KBPS: kilobits per second (one thousand)
- CAN_MBPS: megabits per second (one million)
- CAN_MHZ: megahertz per second (one million)
Example:
u32 bitrate_max = 8 * CAN_MBPS;
struct can_clock clock = {.freq = 80 * CAN_MHZ};
instead of:
u32 bitrate_max = 8000000;
struct can_clock clock = {.freq = 80000000};
Apply the new macro to driver/net/can/dev/bittiming.c.
Link: https://lore.kernel.org/r/20210306054040.76483-1-mailhol.vincent@wanadoo.fr
Signed-off-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'Kbuild')
0 files changed, 0 insertions, 0 deletions