Merge pull request #2685 from jriwanek-forks/improvements

Improvements
This commit is contained in:
Jasmine Iwanek
2022-09-18 16:09:17 -04:00
committed by GitHub
2 changed files with 12 additions and 7 deletions

View File

@@ -16,3 +16,4 @@ IndentPPDirectives: AfterHash
IndentExternBlock: NoIndent IndentExternBlock: NoIndent
PointerAlignment: Right PointerAlignment: Right
SpaceAfterCStyleCast: true SpaceAfterCStyleCast: true
SortIncludes: false

View File

@@ -1064,11 +1064,15 @@ isapnp_reset_device(void *priv, uint8_t ldn)
static const device_t isapnp_device = { static const device_t isapnp_device = {
"ISA Plug and Play", .name = "ISA Plug and Play",
"isapnp", .internal_name = "isapnp",
0, .flags = 0,
0, .local = 0,
isapnp_init, isapnp_close, NULL, .init = isapnp_init,
{ NULL }, NULL, NULL, .close = isapnp_close,
NULL .reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
}; };