Author: marek
Date: 2009-09-12 17:28:23 +0000 (Sat, 12 Sep 2009)
New Revision: 1436
Modified:
trunk/batman-adv-kernelland/device.c
trunk/batman-adv-kernelland/main.c
Log:
[batman-adv] Remove compatibility code for pre 2.6 kernel versions
The earliest version of linux which is compatible to
batman-adv-kernelland is 2.6.20. Their are patches available in debian
for batman-adv-kernelland 0.1 to make it build against linux 2.6.15, but
they cannot be ported to current trunk due to changes to the working
queues. To have "support" for much older versions isn't needed and can
be removed without loosing any functionality.
As result the only remaining LINUX_VERSION_CODE dependend precomiler
code beside compat.h is for netdevice_ops support in soft-interface.c
and result code checking of unregister_chrdev in device.c. For a
possible merge into linux compat.h and all appearances of
LINUX_VERSION_CODE should be removed according to checkpatch.pl.
Signed-off-by: Sven Eckelmann <sven.eckelmann(a)gmx.de>
Modified: trunk/batman-adv-kernelland/device.c
===================================================================
--- trunk/batman-adv-kernelland/device.c 2009-09-11 17:56:56 UTC (rev 1435)
+++ trunk/batman-adv-kernelland/device.c 2009-09-12 17:28:23 UTC (rev 1436)
@@ -26,9 +26,7 @@
#include "compat.h"
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
static struct class *batman_class;
-#endif
static int Major; /* Major number assigned to our device driver */
@@ -65,13 +63,6 @@
return 0;
}
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
- if (devfs_mk_cdev(MKDEV(tmp_major, 0), S_IFCHR | S_IRUGO | S_IWUGO,
- "batman-adv", 0)) {
- debug_log(LOG_TYPE_WARN, "Could not create /dev/batman-adv\n");
- return 0;
- }
-#else
batman_class = class_create(THIS_MODULE, "batman-adv");
if (IS_ERR(batman_class)) {
@@ -81,7 +72,6 @@
device_create(batman_class, NULL, MKDEV(tmp_major, 0), NULL,
"batman-adv");
-#endif
Major = tmp_major;
return 1;
@@ -94,12 +84,8 @@
if (!Major)
return;
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
- devfs_remove("batman-adv", 0);
-#else
device_destroy(batman_class, MKDEV(Major, 0));
class_destroy(batman_class);
-#endif
/* Unregister the device */
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 23)
Modified: trunk/batman-adv-kernelland/main.c
===================================================================
--- trunk/batman-adv-kernelland/main.c 2009-09-11 17:56:56 UTC (rev 1435)
+++ trunk/batman-adv-kernelland/main.c 2009-09-12 17:28:23 UTC (rev 1436)
@@ -203,20 +203,12 @@
void inc_module_count(void)
{
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
- MOD_INC_USE_COUNT;
-#else
try_module_get(THIS_MODULE);
-#endif
}
void dec_module_count(void)
{
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
- MOD_DEC_USE_COUNT;
-#else
module_put(THIS_MODULE);
-#endif
}
int addr_to_string(char *buff, uint8_t *addr)