Fixes.
This commit is contained in:
@@ -2525,20 +2525,6 @@ const device_t keyboard_ps2_ami_device = {
|
|||||||
.config = NULL
|
.config = NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
const device_t keyboard_ps2_ali_device = {
|
|
||||||
.name = "PS/2 Keyboard (ALi M5123/M1543C)",
|
|
||||||
.internal_name = "keyboard_ps2_ali",
|
|
||||||
.flags = 0,
|
|
||||||
.local = KBC_TYPE_PS2_NOREF | KBC_VEN_ALI,
|
|
||||||
.init = kbd_init,
|
|
||||||
.close = kbd_close,
|
|
||||||
.reset = kbd_reset,
|
|
||||||
{ .available = NULL },
|
|
||||||
.speed_changed = NULL,
|
|
||||||
.force_redraw = NULL,
|
|
||||||
.config = NULL
|
|
||||||
};
|
|
||||||
|
|
||||||
const device_t keyboard_ps2_olivetti_device = {
|
const device_t keyboard_ps2_olivetti_device = {
|
||||||
.name = "PS/2 Keyboard (Olivetti)",
|
.name = "PS/2 Keyboard (Olivetti)",
|
||||||
.internal_name = "keyboard_ps2_olivetti",
|
.internal_name = "keyboard_ps2_olivetti",
|
||||||
@@ -2623,6 +2609,20 @@ const device_t keyboard_ps2_ami_pci_device = {
|
|||||||
.config = NULL
|
.config = NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const device_t keyboard_ps2_ali_pci_device = {
|
||||||
|
.name = "PS/2 Keyboard (ALi M5123/M1543C)",
|
||||||
|
.internal_name = "keyboard_ps2_ali_pci",
|
||||||
|
.flags = DEVICE_PCI,
|
||||||
|
.local = KBC_TYPE_PS2_NOREF | KBC_VEN_ALI,
|
||||||
|
.init = kbd_init,
|
||||||
|
.close = kbd_close,
|
||||||
|
.reset = kbd_reset,
|
||||||
|
{ .available = NULL },
|
||||||
|
.speed_changed = NULL,
|
||||||
|
.force_redraw = NULL,
|
||||||
|
.config = NULL
|
||||||
|
};
|
||||||
|
|
||||||
const device_t keyboard_ps2_intel_ami_pci_device = {
|
const device_t keyboard_ps2_intel_ami_pci_device = {
|
||||||
.name = "PS/2 Keyboard (AMI)",
|
.name = "PS/2 Keyboard (AMI)",
|
||||||
.internal_name = "keyboard_ps2_intel_ami_pci",
|
.internal_name = "keyboard_ps2_intel_ami_pci",
|
||||||
|
@@ -178,6 +178,7 @@ extern const device_t keyboard_ps2_pci_device;
|
|||||||
extern const device_t keyboard_ps2_ami_pci_device;
|
extern const device_t keyboard_ps2_ami_pci_device;
|
||||||
extern const device_t keyboard_ps2_intel_ami_pci_device;
|
extern const device_t keyboard_ps2_intel_ami_pci_device;
|
||||||
extern const device_t keyboard_ps2_acer_pci_device;
|
extern const device_t keyboard_ps2_acer_pci_device;
|
||||||
|
extern const device_t keyboard_ps2_ali_pci_device;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern void keyboard_init(void);
|
extern void keyboard_init(void);
|
||||||
|
Reference in New Issue
Block a user