diff options
author | Lidza Louina <lidza.louina@gmail.com> | 2013-08-22 22:17:10 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-23 09:51:19 -0700 |
commit | cbe0ffb5201fc5b2185a83e46923cf038607fe41 (patch) | |
tree | 5e391f9d7bd13a9d8610a861ecbea3d5d8122307 | |
parent | 07b96937cf444939768760220dda1e1f2c3dfafc (diff) |
staging: dgap: removes references to proc code
This patch removes references to proc functions and
structs in the code. The kernel uses sysfs instead
of proc now.
Signed-off-by: Lidza Louina <lidza.louina@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/dgap/dgap_driver.h | 8 | ||||
-rw-r--r-- | drivers/staging/dgap/dgap_fep5.c | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/drivers/staging/dgap/dgap_driver.h b/drivers/staging/dgap/dgap_driver.h index b76ec3c39ef0..b1cf489a729c 100644 --- a/drivers/staging/dgap/dgap_driver.h +++ b/drivers/staging/dgap/dgap_driver.h @@ -412,10 +412,6 @@ struct board_t */ char *msgbuf_head; char *msgbuf; - - /* /proc/<board> entries */ - struct proc_dir_entry *proc_entry_pointer; - struct dgap_proc_entry *dgap_board_table; }; @@ -564,10 +560,6 @@ struct channel_t { ulong ch_err_break; /* Count of breaks on channel */ ulong ch_err_overrun; /* Count of overruns on channel */ - /* /proc/<board>/<channel> entries */ - struct proc_dir_entry *proc_entry_pointer; - struct dgap_proc_entry *dgap_channel_table; - uint ch_sniff_in; uint ch_sniff_out; char *ch_sniff_buf; /* Sniff buffer for proc */ diff --git a/drivers/staging/dgap/dgap_fep5.c b/drivers/staging/dgap/dgap_fep5.c index 45b0f28a202a..291b414863c1 100644 --- a/drivers/staging/dgap/dgap_fep5.c +++ b/drivers/staging/dgap/dgap_fep5.c @@ -133,8 +133,6 @@ int dgap_after_config_loaded(void) */ dgap_Board[i]->flipbuf = dgap_driver_kzmalloc(MYFLIPLEN, GFP_ATOMIC); dgap_Board[i]->flipflagbuf = dgap_driver_kzmalloc(MYFLIPLEN, GFP_ATOMIC); - - //dgap_proc_register_basic_postscan(i); } return (rc); |