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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/i86pc/io/ioat/ioat.c
          +++ new/usr/src/uts/i86pc/io/ioat/ioat.c
↓ open down ↓ 81 lines elided ↑ open up ↑
  82   82  };
  83   83  
  84   84  static struct modldrv ioat_modldrv = {
  85   85          &mod_driverops,         /* Type of module.  This one is a driver */
  86   86          "ioat driver",          /* Name of the module. */
  87   87          &ioat_dev_ops,          /* driver ops */
  88   88  };
  89   89  
  90   90  static struct modlinkage ioat_modlinkage = {
  91   91          MODREV_1,
  92      -        (void *) &ioat_modldrv,
  93      -        NULL
       92 +        { (void *) &ioat_modldrv, NULL }
  94   93  };
  95   94  
  96   95  
  97   96  void *ioat_statep;
  98   97  
  99   98  static int ioat_chip_init(ioat_state_t *state);
 100   99  static void ioat_chip_fini(ioat_state_t *state);
 101  100  static int ioat_drv_init(ioat_state_t *state);
 102  101  static void ioat_drv_fini(ioat_state_t *state);
 103  102  static uint_t ioat_isr(caddr_t parm);
↓ open down ↓ 590 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX