Print this page
7127 remove -Wno-missing-braces from Makefile.uts
@@ -181,12 +181,11 @@
&pciide_ops, /* driver ops */
};
static struct modlinkage modlinkage = {
MODREV_1,
- &modldrv,
- NULL
+ { &modldrv, NULL }
};
int
_init(void)
@@ -982,14 +981,14 @@
* Here's the transformation matrix:
*/
static int pciide_transform[2][2][5] = {
/* P S */
-/* [C][C] */ +1, +1, +1, +1, -4,
-/* [C][N] */ +3, +3, -2, -2, -2,
-/* [N][C] */ +0, +0, +1, +1, -2,
-/* [N][N] */ +0, +0, +0, +0, +0
+/* [C][C] */ { { +1, +1, +1, +1, -4 },
+/* [C][N] */ { +3, +3, -2, -2, -2 } },
+/* [N][C] */ { { +0, +0, +1, +1, -2 },
+/* [N][N] */ { +0, +0, +0, +0, +0 } }
};
static int
pciide_map_rnumber(int rnumber, int pri_native, int sec_native)