This patch makes some needlessly global code static.

Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]>

---

 security/seclvl.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

This patch was already sent on:
- 28 Nov 2004

--- linux-2.6.10-rc2-mm3-full/security/seclvl.c.old     2004-11-28 
03:32:23.000000000 +0100
+++ linux-2.6.10-rc2-mm3-full/security/seclvl.c 2004-11-28 03:34:28.000000000 
+0100
@@ -170,7 +170,7 @@
 /**
  * Callback function pointers for show and store
  */
-struct sysfs_ops seclvlfs_sysfs_ops = {
+static struct sysfs_ops seclvlfs_sysfs_ops = {
        .show = seclvl_attr_show,
        .store = seclvl_attr_store,
 };
@@ -275,7 +275,7 @@
 }
 
 /* Generate sysfs_attr_seclvl */
-struct seclvl_attribute sysfs_attr_seclvl =
+static struct seclvl_attribute sysfs_attr_seclvl =
 __ATTR(seclvl, (S_IFREG | S_IRUGO | S_IWUSR), seclvl_read_file,
        seclvl_write_file);
 
@@ -386,7 +386,7 @@
 }
 
 /* Generate sysfs_attr_passwd */
-struct seclvl_attribute sysfs_attr_passwd =
+static struct seclvl_attribute sysfs_attr_passwd =
 __ATTR(passwd, (S_IFREG | S_IRUGO | S_IWUSR), seclvl_read_passwd,
        seclvl_write_passwd);
 

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to