From: Thadeu Lima de Souza Cascardo Date: Tue, 8 Dec 2009 09:13:33 +0000 (-0200) Subject: Remove unused seq_list functions. X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fkernel%2Fsamples%2F03.proc%2F.git;a=commitdiff_plain;h=d01c3638c059da999013f52f4c5b1e0026828eda Remove unused seq_list functions. --- diff --git a/hello_procfs.c b/hello_procfs.c index a78eff8..4420ad4 100644 --- a/hello_procfs.c +++ b/hello_procfs.c @@ -30,30 +30,6 @@ static int hello_show(struct seq_file *file, void *data) return 0; } -#if 0 -static void * hello_start(struct seq_file *file, loff_t *pos) -{ - return NULL; -} - -static void hello_stop(struct seq_file *file, void *data) -{ -} - -static void * hello_next(struct seq_file *file, void *data, loff_t *pos) -{ - return NULL; -} - -static const struct seq_operations hello_seqops = -{ - .start = hello_start, - .stop = hello_stop, - .next = hello_next, - .show = hello_show, -}; -#endif - static int hello_procfs_open(struct inode *inode, struct file *file) { return single_open(file, hello_show, NULL);