blob: 86b4417f8db1e33fe56795b14172e874bd68624d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef SUPERIO_SMSC_SIO1007_H
#define SUPERIO_SMSC_SIO1007_H
#include <stdint.h>
void sio1007_setreg(u16 lpc_port, u8 reg, u8 value, u8 mask);
int sio1007_enable_uart_at(u16 port);
#endif
|