Mercurial > pt1
comparison driver/pt1_pci.c @ 131:2dc994610477
kernel 3.4.x no longer has asm/system.h
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Wed, 27 Jun 2012 06:42:55 +0900 |
parents | f2ae5ddeed7e |
children | 45b4afa656d2 |
comparison
equal
deleted
inserted
replaced
129:d49174955c7f | 131:2dc994610477 |
---|---|
7 #include <linux/kernel.h> | 7 #include <linux/kernel.h> |
8 #include <linux/errno.h> | 8 #include <linux/errno.h> |
9 #include <linux/pci.h> | 9 #include <linux/pci.h> |
10 #include <linux/init.h> | 10 #include <linux/init.h> |
11 #include <linux/interrupt.h> | 11 #include <linux/interrupt.h> |
12 | 12 #include <linux/version.h> |
13 #include <linux/mutex.h> | |
14 | |
15 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0) | |
13 #include <asm/system.h> | 16 #include <asm/system.h> |
17 #endif | |
14 #include <asm/io.h> | 18 #include <asm/io.h> |
15 #include <asm/irq.h> | 19 #include <asm/irq.h> |
16 #include <asm/uaccess.h> | 20 #include <asm/uaccess.h> |
17 #include <linux/version.h> | 21 |
18 #include <linux/mutex.h> | |
19 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23) | 22 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23) |
20 #include <linux/freezer.h> | 23 #include <linux/freezer.h> |
21 #else | 24 #else |
22 #define set_freezable() | 25 #define set_freezable() |
23 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11) | 26 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11) |