blob: 0d6023b927c2f92f29ac12c50d2132bda0a1c945 (
plain)
1
2
3
4
5
6
7
8
9
10
|
struct chip_operations;
extern struct chip_operations superio_nsc_pc87360_ops;
#include <pc80/keyboard.h>
#include <uart8250.h>
struct superio_nsc_pc87360_config {
struct uart8250 com1, com2;
struct pc_keyboard keyboard;
};
|