]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
net: constify VFTs
authorJan Engelhardt <jengelh@medozas.de>
Wed, 14 Jan 2009 21:52:18 +0000 (13:52 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 21 Jan 2009 22:03:37 +0000 (14:03 -0800)
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_main.c
drivers/net/hamradio/bpqether.c
drivers/net/hamradio/scc.c
drivers/net/hamradio/yam.c
drivers/net/pppoe.c
drivers/net/pppol2tp.c
drivers/net/wireless/ath5k/debug.c
drivers/net/wireless/libertas/debugfs.c
drivers/net/wireless/strip.c

index 9fb388388fb72e6990e697843ac68158fb565bf0..21bce2c0fde22af42e1927d5da172d754e592732 100644 (file)
@@ -3369,7 +3369,7 @@ static int bond_info_seq_show(struct seq_file *seq, void *v)
        return 0;
 }
 
-static struct seq_operations bond_info_seq_ops = {
+static const struct seq_operations bond_info_seq_ops = {
        .start = bond_info_seq_start,
        .next  = bond_info_seq_next,
        .stop  = bond_info_seq_stop,
index 4bf0f19ecfa36f42b2488e6681a77e7dc4d3b202..1f65d1edf132931096d4bd64070d206880f0e73c 100644 (file)
@@ -443,7 +443,7 @@ static int bpq_seq_show(struct seq_file *seq, void *v)
        return 0;
 }
 
-static struct seq_operations bpq_seqops = {
+static const struct seq_operations bpq_seqops = {
        .start = bpq_seq_start,
        .next = bpq_seq_next,
        .stop = bpq_seq_stop,
index 49f9d2491d4774bf6fd044e5b539e575e198c5d9..2acb18f0697298d22a8be3ef8d6313a4f5f7ec64 100644 (file)
@@ -2074,7 +2074,7 @@ static int scc_net_seq_show(struct seq_file *seq, void *v)
         return 0;
 }
 
-static struct seq_operations scc_net_seq_ops = {
+static const struct seq_operations scc_net_seq_ops = {
        .start  = scc_net_seq_start,
        .next   = scc_net_seq_next,
        .stop   = scc_net_seq_stop,
index e2b0a19203ac5e9527a0b52d70816aaba44057f4..82a8be7613d63a92381d5ef5e87166902dd7492d 100644 (file)
@@ -783,7 +783,7 @@ static int yam_seq_show(struct seq_file *seq, void *v)
        return 0;
 }
 
-static struct seq_operations yam_seqops = {
+static const struct seq_operations yam_seqops = {
        .start = yam_seq_start,
        .next = yam_seq_next,
        .stop = yam_seq_stop,
index c22b30533a14cb89eeeda69a83317f80e8c383b3..5efc3d172c8ecec24fda39315a08e1e7a37cd25a 100644 (file)
@@ -1030,7 +1030,7 @@ static void pppoe_seq_stop(struct seq_file *seq, void *v)
        read_unlock_bh(&pppoe_hash_lock);
 }
 
-static struct seq_operations pppoe_seq_ops = {
+static const struct seq_operations pppoe_seq_ops = {
        .start          = pppoe_seq_start,
        .next           = pppoe_seq_next,
        .stop           = pppoe_seq_stop,
index f1a946785c6aee3bf580ad6015d9b825318c6566..635dd5fbe62d98b8ddad5749d5f45421e218900b 100644 (file)
@@ -2517,7 +2517,7 @@ out:
        return 0;
 }
 
-static struct seq_operations pppol2tp_seq_ops = {
+static const struct seq_operations pppol2tp_seq_ops = {
        .start          = pppol2tp_seq_start,
        .next           = pppol2tp_seq_next,
        .stop           = pppol2tp_seq_stop,
@@ -2565,7 +2565,7 @@ static int pppol2tp_proc_release(struct inode *inode, struct file *file)
        return seq_release(inode, file);
 }
 
-static struct file_operations pppol2tp_proc_fops = {
+static const struct file_operations pppol2tp_proc_fops = {
        .owner          = THIS_MODULE,
        .open           = pppol2tp_proc_open,
        .read           = seq_read,
index ccaeb5c219d2ddda8ea8e7f160a8f9a472c8c89a..d281b6e38629b7fb891962bb7cd12e987d7a7a50 100644 (file)
@@ -165,7 +165,7 @@ static int reg_show(struct seq_file *seq, void *p)
        return 0;
 }
 
-static struct seq_operations register_seq_ops = {
+static const struct seq_operations register_seq_ops = {
        .start = reg_start,
        .next  = reg_next,
        .stop  = reg_stop,
index ec4efd7ff3c85064929fe67a6dee3c10f3c2148a..50e28a0cdfeeb0fc60397a146a14c2edad97f1f9 100644 (file)
@@ -629,7 +629,7 @@ static ssize_t lbs_rdrf_write(struct file *file,
                res = -EFAULT;
                goto out_unlock;
        }
-       priv->rf_offset = simple_strtoul((char *)buf, NULL, 16);
+       priv->rf_offset = simple_strtoul(buf, NULL, 16);
        res = count;
 out_unlock:
        free_page(addr);
@@ -680,12 +680,12 @@ out_unlock:
 }
 
 struct lbs_debugfs_files {
-       char *name;
+       const char *name;
        int perm;
        struct file_operations fops;
 };
 
-static struct lbs_debugfs_files debugfs_files[] = {
+static const struct lbs_debugfs_files debugfs_files[] = {
        { "info", 0444, FOPS(lbs_dev_info, write_file_dummy), },
        { "getscantable", 0444, FOPS(lbs_getscantable,
                                        write_file_dummy), },
@@ -693,7 +693,7 @@ static struct lbs_debugfs_files debugfs_files[] = {
                                lbs_sleepparams_write), },
 };
 
-static struct lbs_debugfs_files debugfs_events_files[] = {
+static const struct lbs_debugfs_files debugfs_events_files[] = {
        {"low_rssi", 0644, FOPS(lbs_lowrssi_read,
                                lbs_lowrssi_write), },
        {"low_snr", 0644, FOPS(lbs_lowsnr_read,
@@ -708,7 +708,7 @@ static struct lbs_debugfs_files debugfs_events_files[] = {
                                lbs_highsnr_write), },
 };
 
-static struct lbs_debugfs_files debugfs_regs_files[] = {
+static const struct lbs_debugfs_files debugfs_regs_files[] = {
        {"rdmac", 0644, FOPS(lbs_rdmac_read, lbs_rdmac_write), },
        {"wrmac", 0600, FOPS(NULL, lbs_wrmac_write), },
        {"rdbbp", 0644, FOPS(lbs_rdbbp_read, lbs_rdbbp_write), },
@@ -735,7 +735,7 @@ void lbs_debugfs_remove(void)
 void lbs_debugfs_init_one(struct lbs_private *priv, struct net_device *dev)
 {
        int i;
-       struct lbs_debugfs_files *files;
+       const struct lbs_debugfs_files *files;
        if (!lbs_dir)
                goto exit;
 
@@ -938,7 +938,7 @@ static ssize_t lbs_debugfs_write(struct file *f, const char __user *buf,
        return (ssize_t)cnt;
 }
 
-static struct file_operations lbs_debug_fops = {
+static const struct file_operations lbs_debug_fops = {
        .owner = THIS_MODULE,
        .open = open_file_generic,
        .write = lbs_debugfs_write,
index 7015f2480550faf6145cb175780217538e6a5a88..d6bf8d2ef8eaff8bc29897c9b87ab0604d8dd414 100644 (file)
@@ -1125,7 +1125,7 @@ static int strip_seq_show(struct seq_file *seq, void *v)
 }
 
 
-static struct seq_operations strip_seq_ops = {
+static const struct seq_operations strip_seq_ops = {
        .start = strip_seq_start,
        .next  = strip_seq_next,
        .stop  = strip_seq_stop,