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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/pcbe/p4_pcbe.c
          +++ new/usr/src/uts/intel/pcbe/p4_pcbe.c
↓ open down ↓ 1030 lines elided ↑ open up ↑
1031 1031  }
1032 1032  
1033 1033  static struct modlpcbe modlpcbe = {
1034 1034          &mod_pcbeops,
1035 1035          "Pentium 4 Performance Counters",
1036 1036          &p4_pcbe_ops
1037 1037  };
1038 1038  
1039 1039  static struct modlinkage modl = {
1040 1040          MODREV_1,
1041      -        &modlpcbe,
     1041 +        { &modlpcbe, NULL }
1042 1042  };
1043 1043  
1044 1044  int
1045 1045  _init(void)
1046 1046  {
1047 1047          if (p4_pcbe_init() != 0)
1048 1048                  return (ENOTSUP);
1049 1049          return (mod_install(&modl));
1050 1050  }
1051 1051  
↓ open down ↓ 11 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX