drivers: uart: make ISR function static to match existing declaration

Declaration of the same function should match and be static.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2025-06-13 07:30:31 -04:00
commit 41922b35e4

View file

@ -450,7 +450,7 @@ static void uart_cmsdk_apb_irq_callback_set(const struct device *dev,
*
* @param arg argument to interrupt service routine.
*/
void uart_cmsdk_apb_isr(const struct device *dev)
static void uart_cmsdk_apb_isr(const struct device *dev)
{
struct uart_cmsdk_apb_dev_data *data = dev->data;