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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/i86pc/io/isa.c
          +++ new/usr/src/uts/i86pc/io/isa.c
↓ open down ↓ 227 lines elided ↑ open up ↑
 228  228   */
 229  229  
 230  230  static struct modldrv modldrv = {
 231  231          &mod_driverops, /* Type of module.  This is ISA bus driver */
 232  232          "isa nexus driver for 'ISA'",
 233  233          &isa_ops,       /* driver ops */
 234  234  };
 235  235  
 236  236  static struct modlinkage modlinkage = {
 237  237          MODREV_1,
 238      -        &modldrv,
 239      -        NULL
      238 +        { &modldrv, NULL }
 240  239  };
 241  240  
 242  241  int
 243  242  _init(void)
 244  243  {
 245  244          int     err;
 246  245          char tty_irq_param[9] = "ttyX-irq";
 247  246          char *tty_irq;
 248  247          int i;
 249  248  
↓ open down ↓ 1191 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX