mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
0607616d93
Calling sa1100_register_uart_fns() leaves the port structure unused when CONFIG_SERIAL_SA1100 is disabled, and we get a compiler warning about that: arch/arm/mach-sa1100/badge4.c:317:31: warning: 'badge4_port_fns' defined but not used [-Wunused-variable] static struct sa1100_port_fns badge4_port_fns __initdata = { This turns the two empty macros into empty inline functions, which has the same effect, but lets the compiler know that the variables are intentionally unused. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
37 lines
835 B
C
37 lines
835 B
C
/*
|
|
* Author: Nicolas Pitre
|
|
*
|
|
* Moved and changed lots, Russell King
|
|
*
|
|
* Low level machine dependent UART functions.
|
|
*/
|
|
#ifndef SA11X0_SERIAL_H
|
|
#define SA11X0_SERIAL_H
|
|
|
|
struct uart_port;
|
|
struct uart_info;
|
|
|
|
/*
|
|
* This is a temporary structure for registering these
|
|
* functions; it is intended to be discarded after boot.
|
|
*/
|
|
struct sa1100_port_fns {
|
|
void (*set_mctrl)(struct uart_port *, u_int);
|
|
u_int (*get_mctrl)(struct uart_port *);
|
|
void (*pm)(struct uart_port *, u_int, u_int);
|
|
int (*set_wake)(struct uart_port *, u_int);
|
|
};
|
|
|
|
#ifdef CONFIG_SERIAL_SA1100
|
|
void sa1100_register_uart_fns(struct sa1100_port_fns *fns);
|
|
void sa1100_register_uart(int idx, int port);
|
|
#else
|
|
static inline void sa1100_register_uart_fns(struct sa1100_port_fns *fns)
|
|
{
|
|
}
|
|
static inline void sa1100_register_uart(int idx, int port)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif
|