From: Hannes Reinecke <hare@xxxxxxx> Date: Fri, 21 Nov 2014 13:41:53 +0100 > + if ((config4 & ESP_CONFIG4_GE1) == ESP_CONFIG4_GE1) { Please condense this down to the more simple and straightforward: if (x & BIT(N)) because this is always equivalent to the expression you have used: if ((x & BIT(N)) == BIT(N)) Thanks. -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html