aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn
diff options
context:
space:
mode:
authorCharlie Shepherd <masterdriverz@gentoo.org>2007-07-31 03:39:45 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-31 18:39:44 -0400
commit732781daa4fcb31f96028bf26a219e53d256ddd2 (patch)
treee9e9a578e8b284763725a2cc82dcff246d229810 /drivers/isdn
parent082c8cb4e5e68c0fd29cc10c59db94d2284fd2b0 (diff)
Remove 'isdn_* is defined but unused' warnings
Move the #ifdef guard above these functions to remove the warnings. Signed-off-by: Charlie Shepherd <masterdriverz@gentoo.org> Cc: Karsten Keil <kkeil@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/isdn')
-rw-r--r--drivers/isdn/divert/divert_procfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/isdn/divert/divert_procfs.c b/drivers/isdn/divert/divert_procfs.c
index be77ee625bb7..559a0d0244cf 100644
--- a/drivers/isdn/divert/divert_procfs.c
+++ b/drivers/isdn/divert/divert_procfs.c
@@ -70,6 +70,8 @@ put_info_buffer(char *cp)
70 wake_up_interruptible(&(rd_queue)); 70 wake_up_interruptible(&(rd_queue));
71} /* put_info_buffer */ 71} /* put_info_buffer */
72 72
73#ifdef CONFIG_PROC_FS
74
73/**********************************/ 75/**********************************/
74/* deflection device read routine */ 76/* deflection device read routine */
75/**********************************/ 77/**********************************/
@@ -253,8 +255,6 @@ isdn_divert_ioctl(struct inode *inode, struct file *file,
253 return copy_to_user((void __user *)arg, &dioctl, sizeof(dioctl)) ? -EFAULT : 0; 255 return copy_to_user((void __user *)arg, &dioctl, sizeof(dioctl)) ? -EFAULT : 0;
254} /* isdn_divert_ioctl */ 256} /* isdn_divert_ioctl */
255 257
256
257#ifdef CONFIG_PROC_FS
258static const struct file_operations isdn_fops = 258static const struct file_operations isdn_fops =
259{ 259{
260 .owner = THIS_MODULE, 260 .owner = THIS_MODULE,