Commit 41922b35 authored by Anas Nashif's avatar Anas Nashif
Browse files

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



Declaration of the same function should match and be static.

Signed-off-by: default avatarAnas Nashif <anas.nashif@intel.com>
parent ccc8947d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;