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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/io/agpmaster/agpmaster.c
          +++ new/usr/src/uts/intel/io/agpmaster/agpmaster.c
↓ open down ↓ 89 lines elided ↑ open up ↑
  90   90   * Whether it is a Intel integrated graphics card
  91   91   */
  92   92  #define IS_IGD(agpmaster) ((agpmaster->agpm_dev_type == DEVICE_IS_I810) || \
  93   93          (agpmaster->agpm_dev_type == DEVICE_IS_I830))
  94   94  
  95   95  static struct modlmisc modlmisc = {
  96   96          &mod_miscops, "AGP master interfaces"
  97   97  };
  98   98  
  99   99  static struct modlinkage modlinkage = {
 100      -        MODREV_1, (void *)&modlmisc, NULL
      100 +        MODREV_1, { (void *)&modlmisc, NULL }
 101  101  };
 102  102  
 103  103  static ddi_device_acc_attr_t i8xx_dev_access = {
 104  104          DDI_DEVICE_ATTR_V0,
 105  105          DDI_NEVERSWAP_ACC,
 106  106          DDI_STRICTORDER_ACC
 107  107  };
 108  108  
 109  109  static off_t agpmaster_cap_find(ddi_acc_handle_t);
 110  110  static int detect_i8xx_device(agp_master_softc_t *);
↓ open down ↓ 622 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX