serial: uart_stellaris: remove export of uart_stellaris_isr

There isn't any reason to export the uart_stellaris_isr function, so
lets make it static and remove the associated header file.

Change-Id: I3a131b584d9d6fb6279a1503512668a71510dd4d
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-04-28 11:02:52 -05:00
commit 749e02f6ea
2 changed files with 1 additions and 19 deletions

View file

@ -24,8 +24,6 @@
#include <uart.h>
#include <sections.h>
#include "uart_stellaris.h"
/* definitions */
/* Stellaris UART module */
@ -588,7 +586,7 @@ static void uart_stellaris_irq_callback_set(struct device *dev,
*
* @return N/A
*/
void uart_stellaris_isr(void *arg)
static void uart_stellaris_isr(void *arg)
{
struct device *dev = arg;
struct uart_stellaris_dev_data_t * const dev_data = DEV_DATA(dev);

View file

@ -1,16 +0,0 @@
/*
* Copyright (c) 2016 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file Header file for Stellaris UART.
*/
#ifndef _UART_STELLARIS_H_
#define _UART_STELLARIS_H_
void uart_stellaris_isr(void *arg);
#endif /* _UART_STELLARIS_H_ */