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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/pciex/pcie.c
          +++ new/usr/src/uts/common/io/pciex/pcie.c
↓ open down ↓ 152 lines elided ↑ open up ↑
 153  153   * modload support
 154  154   */
 155  155  
 156  156  static struct modlmisc modlmisc = {
 157  157          &mod_miscops,   /* Type of module */
 158  158          "PCI Express Framework Module"
 159  159  };
 160  160  
 161  161  static struct modlinkage modlinkage = {
 162  162          MODREV_1,
 163      -        (void   *)&modlmisc,
 164      -        NULL
      163 +        { (void *)&modlmisc, NULL }
 165  164  };
 166  165  
 167  166  /*
 168  167   * Global Variables needed for a non-atomic version of ddi_fm_ereport_post.
 169  168   * Currently used to send the pci.fabric ereports whose payload depends on the
 170  169   * type of PCI device it is being sent for.
 171  170   */
 172  171  char            *pcie_nv_buf;
 173  172  nv_alloc_t      *pcie_nvap;
 174  173  nvlist_t        *pcie_nvl;
↓ open down ↓ 2228 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX