[PATCH] misc: ifdef KMOD, saving some bytes probably

From: Jiri Olsa
Date: Fri Feb 08 2008 - 11:48:42 EST


found some code in misc.c that could be ifdef'ed for KMOD

Signed-off-by: Jiri Olsa <olsajiri@xxxxxxxxx>
---
drivers/char/misc.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/drivers/char/misc.c b/drivers/char/misc.c
index a39101f..3455b09 100644
--- a/drivers/char/misc.c
+++ b/drivers/char/misc.c
@@ -126,7 +126,8 @@ static int misc_open(struct inode * inode, struct file * file)
break;
}
}
-
+
+#if defined(CONFIG_KMOD)
if (!new_fops) {
mutex_unlock(&misc_mtx);
request_module("char-major-%d-%d", MISC_MAJOR, minor);
@@ -141,6 +142,10 @@ static int misc_open(struct inode * inode, struct file * file)
if (!new_fops)
goto fail;
}
+#else
+ if (!new_fops)
+ goto fail;
+#endif

err = 0;
old_fops = file->f_op;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/