diff options
| author | Vincent Mailhol <[email protected]> | 2021-03-06 14:40:40 +0900 |
|---|---|---|
| committer | Marc Kleine-Budde <[email protected]> | 2021-03-30 11:14:45 +0200 |
| commit | 1d7750760b70ba8b0e641146eee1b3a343d1b292 (patch) | |
| tree | 18a32fdd433f6d66cdfbb486426fc652777426ed /tools/perf/scripts/python/sctop.py | |
| parent | c25cc7993243fdc00ab7e608e3764819538015ab (diff) | |
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/[email protected]
Signed-off-by: Vincent Mailhol <[email protected]>
Signed-off-by: Marc Kleine-Budde <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/sctop.py')
0 files changed, 0 insertions, 0 deletions