src/sio
This commit is contained in:
@@ -884,53 +884,72 @@ fdc37c93x_init(const device_t *info)
|
||||
return dev;
|
||||
}
|
||||
|
||||
|
||||
const device_t fdc37c931apm_device = {
|
||||
"SMC FDC37C932QF Super I/O",
|
||||
"fdc37c931apm",
|
||||
0,
|
||||
0x130, /* Share the same ID with the 932QF. */
|
||||
fdc37c93x_init, fdc37c93x_close, NULL,
|
||||
{ NULL }, NULL, NULL,
|
||||
NULL
|
||||
.name = "SMC FDC37C932QF Super I/O",
|
||||
.internal_name = "fdc37c931apm",
|
||||
.flags = 0,
|
||||
.local = 0x130, /* Share the same ID with the 932QF. */
|
||||
.init = fdc37c93x_init,
|
||||
.close = fdc37c93x_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = NULL
|
||||
};
|
||||
|
||||
const device_t fdc37c931apm_compaq_device = {
|
||||
"SMC FDC37C932QF Super I/O (Compaq Presario 4500)",
|
||||
"fdc37c931apm_compaq",
|
||||
0,
|
||||
0x330, /* Share the same ID with the 932QF. */
|
||||
fdc37c93x_init, fdc37c93x_close, NULL,
|
||||
{ NULL }, NULL, NULL,
|
||||
NULL
|
||||
.name = "SMC FDC37C932QF Super I/O (Compaq Presario 4500)",
|
||||
.internal_name = "fdc37c931apm_compaq",
|
||||
.flags = 0,
|
||||
.local = 0x330, /* Share the same ID with the 932QF. */
|
||||
.init = fdc37c93x_init,
|
||||
.close = fdc37c93x_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = NULL
|
||||
};
|
||||
|
||||
const device_t fdc37c932fr_device = {
|
||||
"SMC FDC37C932FR Super I/O",
|
||||
"fdc37c932fr",
|
||||
0,
|
||||
0x03,
|
||||
fdc37c93x_init, fdc37c93x_close, NULL,
|
||||
{ NULL }, NULL, NULL,
|
||||
NULL
|
||||
.name = "SMC FDC37C932FR Super I/O",
|
||||
.internal_name = "fdc37c932fr",
|
||||
.flags = 0,
|
||||
.local = 0x03,
|
||||
.init = fdc37c93x_init,
|
||||
.close = fdc37c93x_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = NULL
|
||||
};
|
||||
|
||||
const device_t fdc37c932qf_device = {
|
||||
"SMC FDC37C932QF Super I/O",
|
||||
"fdc37c932qf",
|
||||
0,
|
||||
0x30,
|
||||
fdc37c93x_init, fdc37c93x_close, NULL,
|
||||
{ NULL }, NULL, NULL,
|
||||
NULL
|
||||
.name = "SMC FDC37C932QF Super I/O",
|
||||
.internal_name = "fdc37c932qf",
|
||||
.flags = 0,
|
||||
.local = 0x30,
|
||||
.init = fdc37c93x_init,
|
||||
.close = fdc37c93x_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = NULL
|
||||
};
|
||||
|
||||
const device_t fdc37c935_device = {
|
||||
"SMC FDC37C935 Super I/O",
|
||||
"fdc37c935",
|
||||
0,
|
||||
0x02,
|
||||
fdc37c93x_init, fdc37c93x_close, NULL,
|
||||
{ NULL }, NULL, NULL,
|
||||
NULL
|
||||
.name = "SMC FDC37C935 Super I/O",
|
||||
.internal_name = "fdc37c935",
|
||||
.flags = 0,
|
||||
.local = 0x02,
|
||||
.init = fdc37c93x_init,
|
||||
.close = fdc37c93x_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = NULL
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user