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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/io/pci/pci_pci.c
          +++ new/usr/src/uts/intel/io/pci/pci_pci.c
↓ open down ↓ 179 lines elided ↑ open up ↑
 180  180   */
 181  181  
 182  182  static struct modldrv modldrv = {
 183  183          &mod_driverops, /* Type of module */
 184  184          "Standard PCI to PCI bridge nexus driver",
 185  185          &ppb_ops,       /* driver ops */
 186  186  };
 187  187  
 188  188  static struct modlinkage modlinkage = {
 189  189          MODREV_1,
 190      -        (void *)&modldrv,
 191      -        NULL
      190 +        { (void *)&modldrv, NULL }
 192  191  };
 193  192  
 194  193  /*
 195  194   * soft state pointer and structure template:
 196  195   */
 197  196  static void *ppb_state;
 198  197  
 199  198  typedef struct {
 200  199          dev_info_t *dip;
 201  200          int ppb_fmcap;
↓ open down ↓ 877 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX