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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/tem_safe.c
          +++ new/usr/src/uts/common/io/tem_safe.c
↓ open down ↓ 158 lines elided ↑ open up ↑
 159  159  static text_color_t fg_dim_xlate[] = {  1,  5,  3,  7,  2,  6,  4,  8 };
 160  160  static text_color_t fg_brt_xlate[] = {  9, 13, 11, 15, 10, 14, 12,  0 };
 161  161  static text_color_t bg_xlate[] = {      1,  5,  3,  7,  2,  6,  4,  0 };
 162  162  /* END CSTYLED */
 163  163  
 164  164  
 165  165  text_cmap_t cmap4_to_24 = {
 166  166  /* BEGIN CSTYLED */
 167  167  /* 0    1    2    3    4    5    6    7    8    9   10   11   12   13   14   15
 168  168    Wh+  Bk   Bl   Gr   Cy   Rd   Mg   Br   Wh   Bk+  Bl+  Gr+  Cy+  Rd+  Mg+  Yw */
 169      -  0xff,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x40,0x00,0x00,0x00,0xff,0xff,0xff,
 170      -  0xff,0x00,0x00,0x80,0x80,0x00,0x00,0x80,0x80,0x40,0x00,0xff,0xff,0x00,0x00,0xff,
 171      -  0xff,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x80,0x40,0xff,0x00,0xff,0x00,0xff,0x00
      169 +{ 0xff,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x40,0x00,0x00,0x00,0xff,0xff,0xff },
      170 +{ 0xff,0x00,0x00,0x80,0x80,0x00,0x00,0x80,0x80,0x40,0x00,0xff,0xff,0x00,0x00,0xff },
      171 +{ 0xff,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x80,0x40,0xff,0x00,0xff,0x00,0xff,0x00 }
 172  172  /* END CSTYLED */
 173  173  };
 174  174  
 175  175  #define PIX4TO32(pix4) (pixel32_t)(  \
 176  176      cmap4_to_24.red[pix4] << 16 |  \
 177  177      cmap4_to_24.green[pix4] << 8 | \
 178  178      cmap4_to_24.blue[pix4])
 179  179  
 180  180  /*
 181  181   * Fonts are statically linked with this module. At some point an
↓ open down ↓ 2286 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX