25a26,27 > #include > 640c642 < big_map_support = (id->controller_flags && (1<<7)); --- > big_map_support = (id->controller_flags & (1<<7)); 1004c1006 < big_map_support = (id->controller_flags && (1<<7)); --- > big_map_support = (id->controller_flags & (1<<7)); 1101c1103 < case 2: sprintf(raid_level, "RAID 1"); --- > case 2: sprintf(raid_level, "RAID 1(1+0)"); 1183c1185 < char enclosure_sn[41]; --- > char enclosure_sn[42]; 2294c2296 < printf("%35s: %d% Read / %d% Write\n", "Cache Ratio", cache_config->percent_read_cache, cache_config->percent_write_cache); --- > printf("%35s: %d%% Read / %d%% Write\n", "Cache Ratio", cache_config->percent_read_cache, cache_config->percent_write_cache); 2480c2482 < return id->controller_flags && (1<<7); --- > return id->controller_flags & (1<<7);