From dae72d4eafdc6977dc15410e558eda14fe7290d4 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Mon, 10 May 2010 23:22:48 +0200 Subject: [PATCH] compat: move kparam_{block,unblock}_sysfs_write kparam_block_sysfs_write and kparam_unblock_sysfs_write will introduced in kernel 2.6.35 and not 2.6.33. Signed-off-by: Hauke Mehrtens --- include/linux/compat-2.6.33.h | 3 --- include/linux/compat-2.6.35.h | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/linux/compat-2.6.33.h b/include/linux/compat-2.6.33.h index 70e5f98..0b434fc 100644 --- a/include/linux/compat-2.6.33.h +++ b/include/linux/compat-2.6.33.h @@ -54,9 +54,6 @@ static inline void compat_release_firmware(const struct firmware *fw) #define IFF_DONT_BRIDGE 0x800 /* disallow bridging this ether dev */ /* source: include/linux/if.h */ -#define kparam_block_sysfs_write(a) -#define kparam_unblock_sysfs_write(a) - /* this will never happen on older kernels */ #define NETDEV_POST_INIT 0xffff diff --git a/include/linux/compat-2.6.35.h b/include/linux/compat-2.6.35.h index 9c6e696..278af5e 100644 --- a/include/linux/compat-2.6.35.h +++ b/include/linux/compat-2.6.35.h @@ -23,6 +23,9 @@ static inline wait_queue_head_t *sk_sleep(struct sock *sk) #define usb_alloc_coherent(dev, size, mem_flags, dma) usb_buffer_alloc(dev, size, mem_flags, dma) #define usb_free_coherent(dev, size, addr, dma) usb_buffer_free(dev, size, addr, dma) +#define kparam_block_sysfs_write(a) +#define kparam_unblock_sysfs_write(a) + #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35)) */ #endif /* LINUX_26_35_COMPAT_H */ -- 2.46.0