Print this page
fixup .text where possible
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/dld/dld_drv.c
          +++ new/usr/src/uts/common/io/dld/dld_drv.c
↓ open down ↓ 117 lines elided ↑ open up ↑
 118  118   * Module linkage information for the kernel.
 119  119   */
 120  120  static  struct modldrv          drv_modldrv = {
 121  121          &mod_driverops,
 122  122          DLD_INFO,
 123  123          &drv_ops
 124  124  };
 125  125  
 126  126  static  struct modlinkage       drv_modlinkage = {
 127  127          MODREV_1,
 128      -        &drv_modldrv,
 129      -        NULL
      128 +        {   &drv_modldrv,
      129 +            NULL }
 130  130  };
 131  131  
 132  132  int
 133  133  _init(void)
 134  134  {
 135  135          return (mod_install(&drv_modlinkage));
 136  136  }
 137  137  
 138  138  int
 139  139  _fini(void)
↓ open down ↓ 1374 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX