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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/i86pc/io/cbe.c
          +++ new/usr/src/uts/i86pc/io/cbe.c
↓ open down ↓ 48 lines elided ↑ open up ↑
  49   49   * cbe_xcall_lock is used to protect the xcall globals since the cyclic
  50   50   * reprogramming API does not use cpu_lock.
  51   51   */
  52   52  static kmutex_t cbe_xcall_lock;
  53   53  static cyc_func_t volatile cbe_xcall_func;
  54   54  static cpu_t *volatile cbe_xcall_cpu;
  55   55  static void *cbe_xcall_farg;
  56   56  static cpuset_t cbe_enabled;
  57   57  
  58   58  static ddi_softint_hdl_impl_t cbe_low_hdl =
  59      -        {0, NULL, NULL, NULL, 0, NULL, NULL, NULL};
       59 +        {NULL, 0, {{NULL}}, NULL, NULL, NULL, NULL, NULL};
  60   60  static ddi_softint_hdl_impl_t cbe_clock_hdl =
  61      -        {0, NULL, NULL, NULL, 0, NULL, NULL, NULL};
       61 +        {NULL, 0, {{NULL}}, NULL, NULL, NULL, NULL, NULL};
  62   62  
  63   63  cyclic_id_t cbe_hres_cyclic;
  64   64  int cbe_psm_timer_mode = TIMER_ONESHOT;
  65   65  static hrtime_t cbe_timer_resolution;
  66   66  
  67   67  extern int tsc_gethrtime_enable;
  68   68  
  69   69  void cbe_hres_tick(void);
  70   70  
  71   71  int
↓ open down ↓ 309 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX