Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 265443
Collapse All | Expand All

(-)lirc-0.8.4/drivers/lirc_cmdir/commandir.c (+8 lines)
Lines 42-47 Link Here
42
#include <linux/uaccess.h>
42
#include <linux/uaccess.h>
43
#endif
43
#endif
44
#endif
44
#endif
45
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
46
#define err(format, arg...) printk(KERN_ERR KBUILD_MODNAME ": " \
47
        format "\n" , ## arg)
48
#define info(format, arg...) printk(KERN_INFO KBUILD_MODNAME ": " \
49
        format "\n" , ## arg)
50
#define warn(format, arg...) printk(KERN_WARNING KBUILD_MODNAME ": " \
51
        format "\n" , ## arg)
52
#endif
45
53
46
#define DRIVER_VERSION "v1.1.2"
54
#define DRIVER_VERSION "v1.1.2"
47
#define DRIVER_AUTHOR "Evelyn Yeung, InnovationOne"
55
#define DRIVER_AUTHOR "Evelyn Yeung, InnovationOne"
(-)lirc-0.8.4/drivers/lirc_imon/lirc_imon.c (+9 lines)
Lines 65-70 Link Here
65
#else
65
#else
66
#include <linux/uaccess.h>
66
#include <linux/uaccess.h>
67
#endif
67
#endif
68
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
69
#define err(format, arg...) printk(KERN_ERR KBUILD_MODNAME ": " \
70
        format "\n" , ## arg)
71
#define info(format, arg...) printk(KERN_INFO KBUILD_MODNAME ": " \
72
        format "\n" , ## arg)
73
#define warn(format, arg...) printk(KERN_WARNING KBUILD_MODNAME ": " \
74
        format "\n" , ## arg)
75
#endif
76
68
#include <linux/usb.h>
77
#include <linux/usb.h>
69
78
70
#include "drivers/kcompat.h"
79
#include "drivers/kcompat.h"
(-)lirc-0.8.4/drivers/lirc_mceusb/lirc_mceusb.c (+8 lines)
Lines 111-116 Link Here
111
#include <linux/sched.h>
111
#include <linux/sched.h>
112
#include <linux/signal.h>
112
#include <linux/signal.h>
113
#endif
113
#endif
114
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
115
#define err(format, arg...) printk(KERN_ERR KBUILD_MODNAME ": " \
116
        format "\n" , ## arg)
117
#define info(format, arg...) printk(KERN_INFO KBUILD_MODNAME ": " \
118
        format "\n" , ## arg)
119
#define warn(format, arg...) printk(KERN_WARNING KBUILD_MODNAME ": " \
120
        format "\n" , ## arg)
121
#endif
114
122
115
#ifdef CONFIG_USB_DEBUG
123
#ifdef CONFIG_USB_DEBUG
116
static int debug = 1;
124
static int debug = 1;
(-)lirc-0.8.4/drivers/lirc_sasem/lirc_sasem.c (+9 lines)
Lines 72-77 Link Here
72
#else
72
#else
73
#include <linux/uaccess.h>
73
#include <linux/uaccess.h>
74
#endif
74
#endif
75
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)
76
#define err(format, arg...) printk(KERN_ERR KBUILD_MODNAME ": " \
77
        format "\n" , ## arg)
78
#define info(format, arg...) printk(KERN_INFO KBUILD_MODNAME ": " \
79
        format "\n" , ## arg)
80
#define warn(format, arg...) printk(KERN_WARNING KBUILD_MODNAME ": " \
81
        format "\n" , ## arg)
82
#endif
83
75
#include <linux/usb.h>
84
#include <linux/usb.h>
76
85
77
#include "drivers/kcompat.h"
86
#include "drivers/kcompat.h"

Return to bug 265443