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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/pcmcia/nexus/pcmcia.c
          +++ new/usr/src/uts/common/pcmcia/nexus/pcmcia.c
↓ open down ↓ 296 lines elided ↑ open up ↑
 297  297  static int SSSetWindow(set_window_t *);
 298  298  static int SSSetIRQHandler(set_irq_handler_t *);
 299  299  static int SSClearIRQHandler(clear_irq_handler_t *);
 300  300  
 301  301  static struct modldrv modlmisc = {
 302  302          &mod_miscops,           /* Type of module. This one is a driver */
 303  303          "PCMCIA Nexus Support", /* Name of the module. */
 304  304  };
 305  305  
 306  306  static struct modlinkage modlinkage = {
 307      -        MODREV_1, (void *)&modlmisc, NULL
      307 +        MODREV_1, { (void *)&modlmisc, NULL }
 308  308  };
 309  309  
 310  310  int
 311  311  _init()
 312  312  {
 313  313          int     ret;
 314  314  
 315  315          cisp_init();
 316  316  
 317  317          if (cs_init() != CS_SUCCESS) {
↓ open down ↓ 5233 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX