2013-09-10 16:42:05

by Ben Gardiner

[permalink] [raw]
Subject: [PATCH] mmc: core: make SPI CRC flag readable from /sys/module

Make the use_spi_crc module parameter read only in sysfs.

Signed-off-by: Ben Gardiner <[email protected]>
---
drivers/mmc/core/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
index 49a5bca..93f64b3 100644
--- a/drivers/mmc/core/core.c
+++ b/drivers/mmc/core/core.c
@@ -60,7 +60,7 @@ static const unsigned freqs[] = { 400000, 300000, 200000, 100000 };
* So we allow it it to be disabled.
*/
bool use_spi_crc = 1;
-module_param(use_spi_crc, bool, 0);
+module_param(use_spi_crc, bool, 0444);

/*
* We normally treat cards as removed during suspend if they are not
--
1.8.1.2