On 3/1/24 10:18, John Garry wrote:
On 29/02/2024 17:23, Bart Van Assche wrote: > config SCSI_DEBUG > tristate "SCSI debugging host and device simulator" > depends on SCSI > - select CRC_T10DIF > + select CRC_T10DIF if SCSI_DEBUG = ySo this means that we select CRC_T10DIF if SCSI_DEBUG is only built-in, right?
Yes, that's correct. Without "select CRC_T10DIF if SCSI_DEBUG = y" the build fails if CRC_T10DIF=m and SCSI_DEBUG=y. Thanks, Bart.