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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/mwl/mwl.c
          +++ new/usr/src/uts/common/io/mwl/mwl.c
↓ open down ↓ 61 lines elided ↑ open up ↑
  62   62  DDI_DEFINE_STREAM_OPS(mwl_dev_ops, nulldev, nulldev, mwl_attach, mwl_detach,
  63   63      nodev, NULL, D_MP, NULL, mwl_quiesce);
  64   64  
  65   65  static struct modldrv mwl_modldrv = {
  66   66          &mod_driverops, /* Type of module.  This one is a driver */
  67   67          "Marvell 88W8363 WiFi driver v1.1",     /* short description */
  68   68          &mwl_dev_ops    /* driver specific ops */
  69   69  };
  70   70  
  71   71  static struct modlinkage modlinkage = {
  72      -        MODREV_1, (void *)&mwl_modldrv, NULL
       72 +        MODREV_1, { (void *)&mwl_modldrv, NULL }
  73   73  };
  74   74  
  75   75  static void *mwl_soft_state_p = NULL;
  76   76  
  77   77  static int      mwl_m_stat(void *,  uint_t, uint64_t *);
  78   78  static int      mwl_m_start(void *);
  79   79  static void     mwl_m_stop(void *);
  80   80  static int      mwl_m_promisc(void *, boolean_t);
  81   81  static int      mwl_m_multicst(void *, boolean_t, const uint8_t *);
  82   82  static int      mwl_m_unicst(void *, const uint8_t *);
↓ open down ↓ 4285 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX