Rename src/superio/NSC to src/superio/nsc.
[coreboot.git] / src / superio / nsc / pc97317 / chip.h
1 #ifndef _SUPERIO_NSC_PC97317
2 #define _SUPERIO_NSC_PC97317
3
4 #ifndef PNP_INDEX_REG
5 #define PNP_INDEX_REG   0x15C
6 #endif
7 #ifndef PNP_DATA_REG
8 #define PNP_DATA_REG    0x15D
9 #endif
10
11 extern struct chip_operations superio_nsc_pc97317_ops;
12
13 #include <pc80/keyboard.h>
14 #include <uart8250.h>
15
16 struct superio_nsc_pc97317_config {
17         struct uart8250 com1, com2;
18         struct pc_keyboard keyboard;
19 };
20 #endif /* _SUPERIO_NSC_PC97317 */