aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeepak Saxena <dsaxena@plexity.net>2005-09-28 16:42:54 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-29 08:55:13 -0700
commit82810a906f8734ae6503ea11436a7164d2f86f2e (patch)
tree10b7231280f71d29efc65897b4b06b8fb47a81bc
parent[PATCH] s3c2410fb: Minor warning fix (diff)
downloadlinux-dev-82810a906f8734ae6503ea11436a7164d2f86f2e.tar.xz
linux-dev-82810a906f8734ae6503ea11436a7164d2f86f2e.zip
[PATCH] Fix ixp4xx MTD driver module build
Missing ';' breaks module build. Signed-off-by: Deepak Saxena <dsaxena@plexity.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--drivers/mtd/maps/ixp4xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/ixp4xx.c b/drivers/mtd/maps/ixp4xx.c
index 5afe660aa2c4..bbb0e6e569a6 100644
--- a/drivers/mtd/maps/ixp4xx.c
+++ b/drivers/mtd/maps/ixp4xx.c
@@ -254,6 +254,6 @@ module_init(ixp4xx_flash_init);
module_exit(ixp4xx_flash_exit);
MODULE_LICENSE("GPL");
-MODULE_DESCRIPTION("MTD map driver for Intel IXP4xx systems")
+MODULE_DESCRIPTION("MTD map driver for Intel IXP4xx systems");
MODULE_AUTHOR("Deepak Saxena");