From 1cb2d7caede0236938124202a4bb4026bd56400a Mon Sep 17 00:00:00 2001 From: Teufelchen1 Date: Tue, 2 Apr 2024 11:06:24 +0200 Subject: [PATCH] cpu/sam0: Remove deprecated muxpos --- cpu/sam0_common/include/periph_cpu_common.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cpu/sam0_common/include/periph_cpu_common.h b/cpu/sam0_common/include/periph_cpu_common.h index ea86432de1ed..2c01100485a2 100644 --- a/cpu/sam0_common/include/periph_cpu_common.h +++ b/cpu/sam0_common/include/periph_cpu_common.h @@ -877,11 +877,7 @@ static inline bool cpu_woke_from_backup(void) * @brief ADC Channel Configuration */ typedef struct { - union { - uint32_t inputctrl; /**< ADC channel pin multiplexer value */ - uint32_t muxpos; /**< ADC channel pin multiplexer value - @deprecated, use inputctrl instead */ - }; + uint32_t inputctrl; /**< ADC channel pin multiplexer value */ #ifdef ADC0 Adc *dev; /**< ADC device descriptor */ #endif