Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e8fdc61c authored by DL's avatar DL
Browse files

Disallow software CRC on data blocks. Built-in defaults to allow, module

defaults to disallow. Change default built-in to disallow

Change-Id: I5e80424390a7f69fa6129c02bdbbcac807f33c5d
parent 122f46ea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ static const unsigned freqs[] = { 400000, 300000 };
 * performance cost, and for other reasons may not always be desired.
 * So we allow it it to be disabled.
 */
bool use_spi_crc = 1;
bool use_spi_crc = 0;
module_param(use_spi_crc, bool, 0);

/*