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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/wpi/wpi.c
          +++ new/usr/src/uts/common/io/wpi/wpi.c
↓ open down ↓ 309 lines elided ↑ open up ↑
 310  310      wpi_detach, nodev, NULL, D_MP, NULL, wpi_quiesce);
 311  311  
 312  312  static struct modldrv wpi_modldrv = {
 313  313          &mod_driverops,
 314  314          "Intel(R) PRO/Wireless 3945ABG driver",
 315  315          &wpi_devops
 316  316  };
 317  317  
 318  318  static struct modlinkage wpi_modlinkage = {
 319  319          MODREV_1,
 320      -        &wpi_modldrv,
 321      -        NULL
      320 +        { &wpi_modldrv, NULL }
 322  321  };
 323  322  
 324  323  int
 325  324  _init(void)
 326  325  {
 327  326          int     status;
 328  327  
 329  328          status = ddi_soft_state_init(&wpi_soft_state_p,
 330  329              sizeof (wpi_sc_t), 1);
 331  330          if (status != DDI_SUCCESS)
↓ open down ↓ 3303 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX