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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/io/vgatext/vgatext.c
          +++ new/usr/src/uts/intel/io/vgatext/vgatext.c
↓ open down ↓ 206 lines elided ↑ open up ↑
 207  207  
 208  208  /* Loadable Driver stuff */
 209  209  
 210  210  static struct modldrv modldrv = {
 211  211          &mod_driverops,         /* Type of module.  This one is a driver */
 212  212          "VGA text driver",      /* Name of the module. */
 213  213          &vgatext_ops,           /* driver ops */
 214  214  };
 215  215  
 216  216  static struct modlinkage modlinkage = {
 217      -        MODREV_1, (void *) &modldrv, NULL
      217 +        MODREV_1, { (void *) &modldrv, NULL }
 218  218  };
 219  219  
 220  220  typedef enum pc_colors {
 221  221          pc_black        = 0,
 222  222          pc_blue         = 1,
 223  223          pc_green        = 2,
 224  224          pc_cyan         = 3,
 225  225          pc_red          = 4,
 226  226          pc_magenta      = 5,
 227  227          pc_brown        = 6,
↓ open down ↓ 1312 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX