Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
1.1 KiB

/*
* Copyright (c) 2024 TOKITA Hiroshi <tokita.hiroshi@gmail.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_DRIVERS_SERIAL_UART_PL011_RASPBERRYPI_PICO_H_
#define ZEPHYR_DRIVERS_SERIAL_UART_PL011_RASPBERRYPI_PICO_H_
#define RASPBERRYPI_PICO_UART_CLOCK_CTLR_SUBSYS_CELL clk_id
#define RASPBERRYPI_PICO_UART_DEFINE(n) \
static inline int pwr_on_raspberrypi_pico_uart_##n(void) \
{ \
return 0; \
} \
static inline int clk_enable_raspberrypi_pico_uart_##n(const struct device *dev, \
uint32_t clk) \
{ \
return 0; \
}
#endif /* ZEPHYR_DRIVERS_SERIAL_UART_PL011_RASPBERRYPI_PICO_H_ */