blob: cfe0a319058c583d8be7cb1247b8915d771c68b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _SUPERIO_VIA_VT1211
#define _SUPERIO_VIA_VT1211
#include <uart8250.h>
extern struct chip_operations superio_via_vt1211_ops;
struct superio_via_vt1211_config {
struct uart8250 com1, com2;
};
#endif /* _SUPERIO_VIA_VT1211 */
|