Oopsie, there was a typo that broke building s3cmci as a module.
- Werner
typo-debug-s3cmci-fmax.patch
Oops ! It compiled file as non-module, but not as module.
Signed-off-by: Werner Almesberger <[EMAIL PROTECTED]>
---
diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c
index 45f5e21..2bae68b 100644
--- a/drivers/mmc/host/s3cmci.c
+++ b/drivers/mmc/host/s3cmci.c
@@ -1589,7 +1589,7 @@ static void __exit s3cmci_exit(void)
module_init(s3cmci_init);
module_exit(s3cmci_exit);
-module_param(f_max, int, 0644)
+module_param(f_max, int, 0644);
MODULE_DESCRIPTION("Samsung S3C MMC/SD Card Interface driver");
MODULE_LICENSE("GPL v2");