1 /* 2 * Copyright (c) 2021 Linaro Limited 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef _ATMEL_SAM_PWM_FIXUP_H_ 8 #define _ATMEL_SAM_PWM_FIXUP_H_ 9 10 /* The SAMV71 HALs change the name of the field, so we need to 11 * define it this way to match how the other SoC variants name it 12 */ 13 #if defined(CONFIG_SOC_SERIES_SAMV71) 14 #define PWM_CH_NUM PwmChNum 15 #endif 16 17 #endif /* _ATMEL_SAM_PWM_FIXUP_H_ */ 18