Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 119196 | Differences between
and this patch

Collapse All | Expand All

(-)old/ppscsi.c (-2 / +6 lines)
Lines 1144-1151 Link Here
1144
		pha->device[p] = '.';
1144
		pha->device[p] = '.';
1145
		pha->device[p+1] = '0' + i;
1145
		pha->device[p+1] = '0' + i;
1146
		pha->device[p+2] = 0;
1146
		pha->device[p+2] = 0;
1147
1147
		
1148
		INIT_WORK(&pha->wq, ppsc_tq_int, pha);
1148
		#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
1149
			INIT_WORK(&pha->wq, ppsc_tq_int, pha);
1150
		#else
1151
			INIT_WORK(&pha->wq, ppsc_tq_int);
1152
		#endif
1149
1153
1150
		init_timer (&pha->timer);
1154
		init_timer (&pha->timer);
1151
		pha->timer.data = (unsigned long) pha;
1155
		pha->timer.data = (unsigned long) pha;
(-)old/ppscsi.h (-1 / +1 lines)
Lines 13-19 Link Here
13
#define	PPSC_H_VERSION	"0.92"
13
#define	PPSC_H_VERSION	"0.92"
14
14
15
#include <linux/module.h>
15
#include <linux/module.h>
16
#include <linux/config.h>
16
#include <linux/autoconf.h>
17
#include <linux/version.h>
17
#include <linux/version.h>
18
#include <linux/stddef.h>
18
#include <linux/stddef.h>
19
#include <linux/types.h>
19
#include <linux/types.h>

Return to bug 119196