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