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:
parent
3df9fd1ff0
commit
749e02f6ea
2 changed files with 1 additions and 19 deletions
|
@ -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);
|
||||
|
|
|
@ -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_ */
|
Loading…
Add table
Add a link
Reference in a new issue