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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/mem.c
          +++ new/usr/src/uts/common/io/mem.c
↓ open down ↓ 993 lines elided ↑ open up ↑
 994  994          (struct bus_ops *)0,    /* bus operations */
 995  995          NULL,                   /* power */
 996  996          ddi_quiesce_not_needed,         /* quiesce */
 997  997  };
 998  998  
 999  999  static struct modldrv modldrv = {
1000 1000          &mod_driverops, "memory driver", &mm_ops,
1001 1001  };
1002 1002  
1003 1003  static struct modlinkage modlinkage = {
1004      -        MODREV_1, &modldrv, NULL
     1004 +        MODREV_1, { &modldrv, NULL }
1005 1005  };
1006 1006  
1007 1007  int
1008 1008  _init(void)
1009 1009  {
1010 1010          return (mod_install(&modlinkage));
1011 1011  }
1012 1012  
1013 1013  int
1014 1014  _info(struct modinfo *modinfop)
↓ open down ↓ 90 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX