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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/sata/adapters/si3124/si3124.c
          +++ new/usr/src/uts/common/io/sata/adapters/si3124/si3124.c
↓ open down ↓ 408 lines elided ↑ open up ↑
 409  409  extern struct mod_ops mod_driverops;
 410  410  
 411  411  static  struct modldrv modldrv = {
 412  412          &mod_driverops, /* driverops */
 413  413          "si3124 driver",
 414  414          &sictl_dev_ops, /* driver ops */
 415  415  };
 416  416  
 417  417  static  struct modlinkage modlinkage = {
 418  418          MODREV_1,
 419      -        &modldrv,
 420      -        NULL
      419 +        { &modldrv, NULL }
 421  420  };
 422  421  
 423  422  
 424  423  /* The following are needed for si_log() */
 425  424  static kmutex_t si_log_mutex;
 426  425  static char si_log_buf[SI_LOGBUF_LEN];
 427  426  uint32_t si_debug_flags =
 428  427      SIDBG_ERRS|SIDBG_INIT|SIDBG_EVENT|SIDBG_TIMEOUT|SIDBG_RESET;
 429  428  
 430  429  static int is_msi_supported = 0;
↓ open down ↓ 5645 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX