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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/io/amr/amr.c
          +++ new/usr/src/uts/intel/io/amr/amr.c
↓ open down ↓ 229 lines elided ↑ open up ↑
 230  230  
 231  231  extern struct mod_ops mod_driverops;
 232  232  static struct modldrv modldrv = {
 233  233          &mod_driverops,         /* Type of module. driver here */
 234  234          "AMR Driver",           /* Name of the module. */
 235  235          &amr_ops,               /* Driver ops vector */
 236  236  };
 237  237  
 238  238  static struct modlinkage modlinkage = {
 239  239          MODREV_1,
 240      -        &modldrv,
 241      -        NULL
      240 +        { &modldrv, NULL }
 242  241  };
 243  242  
 244  243  /* DMA access attributes */
 245  244  static ddi_device_acc_attr_t accattr = {
 246  245          DDI_DEVICE_ATTR_V0,
 247  246          DDI_NEVERSWAP_ACC,
 248  247          DDI_STRICTORDER_ACC
 249  248  };
 250  249  
 251  250  static struct amr_softs  *amr_softstatep;
↓ open down ↓ 2050 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX