1 /* 2 * Copyright (c) 2024 TOKITA Hiroshi <tokita.hiroshi@gmail.com> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_DRIVERS_SERIAL_UART_PL011_RASPBERRYPI_PICO_H_ 8 #define ZEPHYR_DRIVERS_SERIAL_UART_PL011_RASPBERRYPI_PICO_H_ 9 10 #define RASPBERRYPI_PICO_UART_CLOCK_CTLR_SUBSYS_CELL clk_id 11 12 #define RASPBERRYPI_PICO_UART_DEFINE(n) \ 13 static inline int pwr_on_raspberrypi_pico_uart_##n(void) \ 14 { \ 15 return 0; \ 16 } \ 17 static inline int clk_enable_raspberrypi_pico_uart_##n(const struct device *dev, \ 18 uint32_t clk) \ 19 { \ 20 return 0; \ 21 } 22 23 #endif /* ZEPHYR_DRIVERS_SERIAL_UART_PL011_RASPBERRYPI_PICO_H_ */ 24