summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2008-09-06 20:27:59 +0000
committerMatthew Fredrickson <creslin@digium.com>2008-09-06 20:27:59 +0000
commit284801268cbe499449c7fdf8170b04b93505bf22 (patch)
treea535d680a0de869fddece219c5180e5e1f4e9eb4
parent33004bb8f56db4ebfd60ae2f636db830c4920603 (diff)
Fix buglet in #define for 2.6.9
git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@4870 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--drivers/dahdi/dahdi-base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dahdi/dahdi-base.c b/drivers/dahdi/dahdi-base.c
index 014c1e3..a295bac 100644
--- a/drivers/dahdi/dahdi-base.c
+++ b/drivers/dahdi/dahdi-base.c
@@ -175,7 +175,7 @@ static struct proc_dir_entry *proc_entries[DAHDI_MAX_SPANS];
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13)
#define CLASS_DEV_DESTROY(class, devt) \
class_device_destroy(class, devt)
-#elif LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,9) \
+#elif LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,9)
#define CLASS_DEV_DESTROY(class, devt) \
class_simple_device_remove(devt)
#else