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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/cmlb.c
          +++ new/usr/src/uts/common/io/cmlb.c
↓ open down ↓ 273 lines elided ↑ open up ↑
 274  274  uint_t cmlb_level_mask = 0x0;
 275  275  
 276  276  int cmlb_rot_delay = 4; /* default rotational delay */
 277  277  
 278  278  static struct modlmisc modlmisc = {
 279  279          &mod_miscops,   /* Type of module */
 280  280          "Common Labeling module"
 281  281  };
 282  282  
 283  283  static struct modlinkage modlinkage = {
 284      -        MODREV_1, (void *)&modlmisc, NULL
      284 +        MODREV_1, { (void *)&modlmisc, NULL }
 285  285  };
 286  286  
 287  287  /* Local function prototypes */
 288  288  static dev_t cmlb_make_device(struct cmlb_lun *cl);
 289  289  static int cmlb_validate_geometry(struct cmlb_lun *cl, boolean_t forcerevalid,
 290  290      int flags, void *tg_cookie);
 291  291  static void cmlb_resync_geom_caches(struct cmlb_lun *cl, diskaddr_t capacity,
 292  292      void *tg_cookie);
 293  293  static int cmlb_read_fdisk(struct cmlb_lun *cl, diskaddr_t capacity,
 294  294      void *tg_cookie);
↓ open down ↓ 5525 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX