Print this page
7127 remove -Wno-missing-braces from Makefile.uts
*** 248,259 ****
* module linkage base structure (modctl.h)
*/
static struct modlinkage modlinkage = {
MODREV_1, /* revision # of system */
! &modldrv, /* NULL terminated list of linkage strucures */
! NULL
};
/* ===================== start of STREAMS driver code ================== */
#ifdef CONFIG_CHELSIO_T1_OFFLOAD
--- 248,258 ----
* module linkage base structure (modctl.h)
*/
static struct modlinkage modlinkage = {
MODREV_1, /* revision # of system */
! { &modldrv, NULL } /* NULL terminated list of linkage strucures */
};
/* ===================== start of STREAMS driver code ================== */
#ifdef CONFIG_CHELSIO_T1_OFFLOAD
*** 270,280 ****
/*
* Ethernet broadcast address definition.
*/
static struct ether_addr etherbroadcastaddr = {
! 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
};
/*
* Module initialization functions.
*
--- 269,279 ----
/*
* Ethernet broadcast address definition.
*/
static struct ether_addr etherbroadcastaddr = {
! { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }
};
/*
* Module initialization functions.
*