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


 100         DEVO_REV,
 101         0,
 102         nodev,                  /* no getinfo */
 103         nulldev,
 104         iiprobe,
 105         iiattach,
 106         iidetach,
 107         nodev,                  /* no reset */
 108         &ii_cb_ops,
 109         (struct bus_ops *)NULL
 110 };
 111 
 112 static struct modldrv ii_ldrv = {
 113         &mod_driverops,
 114         "nws:Point-in-Time:" ISS_VERSION_STR,
 115         &ii_ops
 116 };
 117 
 118 static struct modlinkage ii_modlinkage = {
 119         MODREV_1,
 120         &ii_ldrv,
 121         NULL
 122 };
 123 
 124 struct ii_state {
 125         dev_info_t *dip;
 126         int     instance;
 127 };
 128 
 129 /* used for logging sysevent, gets set in _ii_attach */
 130 dev_info_t *ii_dip = NULL;
 131 
 132 extern _ii_info_t *_ii_info_top;
 133 extern _ii_lsthead_t *_ii_cluster_top;
 134 extern _ii_lsthead_t *_ii_group_top;
 135 extern kmutex_t _ii_cluster_mutex;
 136 extern kmutex_t _ii_group_mutex;
 137 
 138 const int dsw_major_rev = ISS_VERSION_MAJ;      /* Major release number */
 139 const int dsw_minor_rev = ISS_VERSION_MIN;      /* Minor release number */
 140 const int dsw_micro_rev = ISS_VERSION_MIC;      /* Micro release number */
 141 const int dsw_baseline_rev = ISS_VERSION_NUM;   /* Baseline revision */




 100         DEVO_REV,
 101         0,
 102         nodev,                  /* no getinfo */
 103         nulldev,
 104         iiprobe,
 105         iiattach,
 106         iidetach,
 107         nodev,                  /* no reset */
 108         &ii_cb_ops,
 109         (struct bus_ops *)NULL
 110 };
 111 
 112 static struct modldrv ii_ldrv = {
 113         &mod_driverops,
 114         "nws:Point-in-Time:" ISS_VERSION_STR,
 115         &ii_ops
 116 };
 117 
 118 static struct modlinkage ii_modlinkage = {
 119         MODREV_1,
 120         { &ii_ldrv, NULL }

 121 };
 122 
 123 struct ii_state {
 124         dev_info_t *dip;
 125         int     instance;
 126 };
 127 
 128 /* used for logging sysevent, gets set in _ii_attach */
 129 dev_info_t *ii_dip = NULL;
 130 
 131 extern _ii_info_t *_ii_info_top;
 132 extern _ii_lsthead_t *_ii_cluster_top;
 133 extern _ii_lsthead_t *_ii_group_top;
 134 extern kmutex_t _ii_cluster_mutex;
 135 extern kmutex_t _ii_group_mutex;
 136 
 137 const int dsw_major_rev = ISS_VERSION_MAJ;      /* Major release number */
 138 const int dsw_minor_rev = ISS_VERSION_MIN;      /* Minor release number */
 139 const int dsw_micro_rev = ISS_VERSION_MIC;      /* Micro release number */
 140 const int dsw_baseline_rev = ISS_VERSION_NUM;   /* Baseline revision */