Print this page
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/iwi/ipw2200.c
          +++ new/usr/src/uts/common/io/iwi/ipw2200.c
↓ open down ↓ 3059 lines elided ↑ open up ↑
3060 3060      ipw2200_detach, nodev, NULL, D_MP, NULL, ipw2200_quiesce);
3061 3061  
3062 3062  static struct modldrv ipw2200_modldrv = {
3063 3063          &mod_driverops,
3064 3064          ipw2200_ident,
3065 3065          &ipw2200_devops
3066 3066  };
3067 3067  
3068 3068  static struct modlinkage ipw2200_modlinkage = {
3069 3069          MODREV_1,
3070      -        &ipw2200_modldrv,
3071      -        NULL
     3070 +        { &ipw2200_modldrv, NULL }
3072 3071  };
3073 3072  
3074 3073  int
3075 3074  _init(void)
3076 3075  {
3077 3076          int status;
3078 3077  
3079 3078          status = ddi_soft_state_init(&ipw2200_ssp,
3080 3079              sizeof (struct ipw2200_softc), 1);
3081 3080          if (status != DDI_SUCCESS)
↓ open down ↓ 31 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX