• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SUPERIO_SMSC_SIO1007_H
4 #define SUPERIO_SMSC_SIO1007_H
5 
6 #include <stdint.h>
7 
8 void sio1007_setreg(u16 lpc_port, u8 reg, u8 value, u8 mask);
9 int sio1007_enable_uart_at(u16 port);
10 
11 #endif
12