Commit 175ceea9 authored by Art Haas's avatar Art Haas Committed by David S. Miller

[PATCH] fix C99 initializers fix

Sorry about sending the screwed up patches the first time.  Here's the
fix for the two missing "{".
parent 165eb183
...@@ -47,7 +47,7 @@ typedef struct { ...@@ -47,7 +47,7 @@ typedef struct {
} imm_struct; } imm_struct;
#define IMM_EMPTY \ #define IMM_EMPTY \
.base = -1, \ { .base = -1, \
.mode = IMM_AUTODETECT, \ .mode = IMM_AUTODETECT, \
.host = -1, \ .host = -1, \
} }
......
...@@ -38,7 +38,7 @@ typedef struct { ...@@ -38,7 +38,7 @@ typedef struct {
} ppa_struct; } ppa_struct;
#define PPA_EMPTY \ #define PPA_EMPTY \
.base = -1, \ { .base = -1, \
.mode = PPA_AUTODETECT, \ .mode = PPA_AUTODETECT, \
.host = -1, \ .host = -1, \
.ppa_tq = { .func = ppa_interrupt }, \ .ppa_tq = { .func = ppa_interrupt }, \
......
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