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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/dcopy.c
          +++ new/usr/src/uts/common/io/dcopy.c
↓ open down ↓ 131 lines elided ↑ open up ↑
 132  132  
 133  133  /* Module Driver Info */
 134  134  static struct modlmisc dcopy_modlmisc = {
 135  135          &mod_miscops,
 136  136          "dcopy kernel module"
 137  137  };
 138  138  
 139  139  /* Module Linkage */
 140  140  static struct modlinkage dcopy_modlinkage = {
 141  141          MODREV_1,
 142      -        &dcopy_modlmisc,
 143      -        NULL
      142 +        { &dcopy_modlmisc, NULL }
 144  143  };
 145  144  
 146  145  static int dcopy_init();
 147  146  static void dcopy_fini();
 148  147  
 149  148  static int dcopy_list_init(dcopy_list_t *list, size_t node_size,
 150  149      offset_t link_offset);
 151  150  static void dcopy_list_fini(dcopy_list_t *list);
 152  151  static void dcopy_list_push(dcopy_list_t *list, void *list_node);
 153  152  static void *dcopy_list_pop(dcopy_list_t *list);
↓ open down ↓ 782 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX