Commit c1e08b84 authored by Linus Torvalds's avatar Linus Torvalds

Don't use obsolete gcc named initializer syntax.

The proper C99 syntax is much preferred.
parent e3303e02
...@@ -54,14 +54,14 @@ static void ack_none(unsigned int irq) ...@@ -54,14 +54,14 @@ static void ack_none(unsigned int irq)
} }
struct hw_interrupt_type no_irq_type = { struct hw_interrupt_type no_irq_type = {
typename: "none", .typename = "none",
startup: startup_none, .startup = startup_none,
shutdown: shutdown_none, .shutdown = shutdown_none,
enable: enable_none, .enable = enable_none,
disable: disable_none, .disable = disable_none,
ack: ack_none, .ack = ack_none,
end: end_none, .end = end_none,
set_affinity: NULL .set_affinity = NULL
}; };
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment