1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/periph_common
bors[bot] 8fc1187278
Merge #17830 #19635
17830: periph/timer: fix Kconfig menu title r=aabadie a=gschorcht

### Contribution description

This PR is a very small fix of inconsistent peripheral driver entry in `Kconfig` for `periph/timer`.

In Kconfig menu `(Top) → Drivers → Peripherals drivers` all entries start with the peripheral name in alphabetical order with only one exception, the timer entry. This entry is called `Configure timer peripheral driver`:
```
[ ] CPU unique ID
[ ] EEPROM peripheral driver
[ ] Flashpage peripheral driver  ----
[*] GPIO peripheral driver  --->
[ ] HWRNG peripheral driver
[ ] PWM peripheral driver
[*] Power Management (PM) peripheral driver
[*]     Auto initialize Power Management (PM) peripheral
[ ] Quadrature Decoder (QDEC) peripheral driver
[ ] RTC peripheral driver  ----
[ ] SPI peripheral driver  ----
[*] UART peripheral driver  --->
[*] Configure timer peripheral driver  --->
```
This is confusing and doesn't help to find the right entry. This PR
1. changes the entry to `Timer peripheral driver` and
2. corrects the alphabetical order.

### Testing procedure

Use command
```
TEST_KCONFIG=1 make -C tests/periph_timer menuconfig
```
and check the output. in menu `(Top) → Drivers → Peripherals drivers`. It should be with this PR:
```
[ ] CPU unique ID
[ ] EEPROM peripheral driver
[ ] Flashpage peripheral driver  ----
[*] GPIO peripheral driver  --->
[ ] HWRNG peripheral driver
[ ] PWM peripheral driver
[*] Power Management (PM) peripheral driver
[*]     Auto initialize Power Management (PM) peripheral
[ ] Quadrature Decoder (QDEC) peripheral driver
[ ] RTC peripheral driver  ----
[ ] SPI peripheral driver  ----
[*] Timer peripheral driver  --->
[*] UART peripheral driver  --->
```
### Issues/PRs references


19635: drivers/mrf24j40: cleanup function r=aabadie a=maribu

### Contribution description

`_set_csma_params()` spends some time to prepare a value in `uint8_t tmp`, which then is never used. Likely this is a leftover of moving code to `mrf24j40_set_csma_max_retries()`. This drops the leftover code.


Co-authored-by: Gunar Schorcht <gunar@schorcht.net>
Co-authored-by: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
2023-05-20 18:43:44 +00:00
..
cpuid.c drivers/periph_cpuid: Minor cleanup 2022-04-11 12:01:57 +02:00
eeprom.c drivers/periph_common: build periph module selectively 2021-12-20 13:04:20 +01:00
flashpage.c drivers/periph_common/flashpage: fix silent error 2023-01-19 11:00:40 -05:00
gpio_ll_irq.c drivers: Add periph/gpio_ll API 2022-04-22 08:39:04 +02:00
gpio_ll.c drivers: Add periph/gpio_ll API 2022-04-22 08:39:04 +02:00
gpio.c drivers/periph_common: build periph module selectively 2021-12-20 13:04:20 +01:00
i2c.c drivers/periph_common: build periph module selectively 2021-12-20 13:04:20 +01:00
init_buttons.c drivers/periph_common: add periph_init_buttons to init on-board buttons 2022-02-26 22:45:46 +01:00
init_leds.c drivers/periph_common: add periph_init_leds to init all on-board LEDs 2022-02-18 14:35:43 +01:00
init.c drivers/wdt: add periph_wdt_auto_start for early watchdog 2023-01-14 23:21:24 +01:00
Kconfig Merge #17830 #19635 2023-05-20 18:43:44 +00:00
Kconfig.flashpage periph/flashpage: Add _in_address_space feature 2022-03-17 19:45:54 +01:00
Kconfig.gpio periph/gpio: Model TAMPER_WAKE for kconfig 2021-11-29 09:12:28 +01:00
Kconfig.i2c cpu/esp32: model Kconfig 2021-12-10 18:54:07 +01:00
Kconfig.leds drivers/periph_common: add periph_init_leds to init all on-board LEDs 2022-02-18 14:35:43 +01:00
Kconfig.rtc sys: move rtc utility functions to their own module 2021-12-20 13:04:20 +01:00
Kconfig.spi drivers/periph_spi: Kconfig SPI_ON_QSPI model 2021-11-29 09:12:27 +01:00
Kconfig.timer periph/timer: fix Kconfig menu title 2022-03-20 21:35:16 +01:00
Kconfig.uart Merge pull request #16681 from benpicco/drivers/dose-collision 2021-12-08 20:48:28 +01:00
Kconfig.usbdev drivers/periph_common: add periph_usbdev_hs feature in Kconfig 2023-03-16 07:47:18 +01:00
Kconfig.vbat cpu/stm32: add VBAT for stm32 2022-02-21 10:49:43 +01:00
Kconfig.wdt drivers/periph_common: remove redundant entry 2020-09-02 15:31:28 +02:00
Makefile drivers/periph_common: build periph module selectively 2021-12-20 13:04:20 +01:00
Makefile.dep drivers: Only select periph_gpio_ll_irq_unmask if needed 2022-08-16 10:57:25 +02:00
pm.c drivers/*: realign ENABLE_DEBUG 2020-10-23 01:26:09 +02:00
ptp_timer.c drivers/periph_common: build periph module selectively 2021-12-20 13:04:20 +01:00
spi.c drivers/periph_common: build periph module selectively 2021-12-20 13:04:20 +01:00
timer.c drivers/periph_common/timer: protect timer_set from IRQs 2020-01-10 09:58:18 +01:00