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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/ipw/ipw2100.c
          +++ new/usr/src/uts/common/io/ipw/ipw2100.c
↓ open down ↓ 2879 lines elided ↑ open up ↑
2880 2880      ipw2100_detach, nodev, NULL, D_MP, NULL, ipw2100_quiesce);
2881 2881  
2882 2882  static struct modldrv ipw2100_modldrv = {
2883 2883          &mod_driverops,
2884 2884          ipw2100_ident,
2885 2885          &ipw2100_devops
2886 2886  };
2887 2887  
2888 2888  static struct modlinkage ipw2100_modlinkage = {
2889 2889          MODREV_1,
2890      -        &ipw2100_modldrv,
2891      -        NULL
     2890 +        { &ipw2100_modldrv, NULL }
2892 2891  };
2893 2892  
2894 2893  int
2895 2894  _init(void)
2896 2895  {
2897 2896          int     status;
2898 2897  
2899 2898          status = ddi_soft_state_init(&ipw2100_ssp,
2900 2899              sizeof (struct ipw2100_softc), 1);
2901 2900          if (status != DDI_SUCCESS)
↓ open down ↓ 31 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX