From d01c3638c059da999013f52f4c5b1e0026828eda Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Tue, 8 Dec 2009 07:13:33 -0200 Subject: [PATCH 1/1] Remove unused seq_list functions. --- hello_procfs.c | 24 ------------------------ 1 file changed, 24 deletions(-) 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); -- 2.20.1