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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/pcbe/p123_pcbe.c
          +++ new/usr/src/uts/intel/pcbe/p123_pcbe.c
↓ open down ↓ 1059 lines elided ↑ open up ↑
1060 1060  }
1061 1061  
1062 1062  static struct modlpcbe modlpcbe = {
1063 1063          &mod_pcbeops,
1064 1064          "Pentium Performance Counters",
1065 1065          &ptm_pcbe_ops
1066 1066  };
1067 1067  
1068 1068  static struct modlinkage modl = {
1069 1069          MODREV_1,
1070      -        &modlpcbe,
     1070 +        { &modlpcbe, NULL }
1071 1071  };
1072 1072  
1073 1073  int
1074 1074  _init(void)
1075 1075  {
1076 1076          if (ptm_pcbe_init() != 0)
1077 1077                  return (ENOTSUP);
1078 1078          return (mod_install(&modl));
1079 1079  }
1080 1080  
↓ open down ↓ 11 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX