From 2e33bdc7b55a30c0ad9a05705c23297a897e0e2c Mon Sep 17 00:00:00 2001 From: Shaun Ruffell Date: Tue, 17 Jun 2014 02:09:32 -0500 Subject: [PATCH] tor2: Remove unused open/close callbacks. Signed-off-by: Shaun Ruffell Signed-off-by: Russ Meyerriecks --- drivers/dahdi/tor2.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/drivers/dahdi/tor2.c b/drivers/dahdi/tor2.c index f0ad710..5d2f37e 100644 --- a/drivers/dahdi/tor2.c +++ b/drivers/dahdi/tor2.c @@ -254,16 +254,6 @@ static int tor2_chanconfig(struct file *file, return 0; } -static int tor2_open(struct dahdi_chan *chan) -{ - return 0; -} - -static int tor2_close(struct dahdi_chan *chan) -{ - return 0; -} - static const struct dahdi_span_ops tor2_span_ops = { .owner = THIS_MODULE, .spanconfig = tor2_spanconfig, @@ -272,8 +262,6 @@ static const struct dahdi_span_ops tor2_span_ops = { .shutdown = tor2_shutdown, .rbsbits = tor2_rbsbits, .maint = tor2_maint, - .open = tor2_open, - .close = tor2_close, .ioctl = tor2_ioctl, };