diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-17 12:05:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-17 12:05:38 -0400 |
commit | ee723cb3d419afcc8b6c7ccc0f73a34b0eb5ac7b (patch) | |
tree | 630bc3f1d0e57687e777d2f30e478a23baca9353 /include/asm-s390/chpid.h | |
parent | 7023cc61292f9cd61d99521206480f6e387132ff (diff) | |
parent | 8586cb60ce85f40431cf06fe97512269d3992f03 (diff) |
Merge branch 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6
* 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6:
[S390] dasd: use -EOPNOTSUPP instead of -ENOTSUPP
[S390] qdio: new qdio driver.
[S390] cio: Export chsc_error_from_response().
[S390] vmur: Fix return code handling.
[S390] Fix stacktrace compile bug.
[S390] Increase default warning stacksize.
[S390] dasd: Fix cleanup in dasd_{fba,diag}_check_characteristics().
[S390] chsc headers userspace cleanup
[S390] dasd: fix unsolicited SIM handling.
[S390] zfcpdump: Make SCSI disk dump tool recognize storage holes
Diffstat (limited to 'include/asm-s390/chpid.h')
-rw-r--r-- | include/asm-s390/chpid.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-s390/chpid.h b/include/asm-s390/chpid.h index 606844d0a5c3..dfe3c7f3439a 100644 --- a/include/asm-s390/chpid.h +++ b/include/asm-s390/chpid.h | |||
@@ -20,6 +20,9 @@ struct chp_id { | |||
20 | u8 id; | 20 | u8 id; |
21 | } __attribute__((packed)); | 21 | } __attribute__((packed)); |
22 | 22 | ||
23 | #ifdef __KERNEL__ | ||
24 | #include <asm/cio.h> | ||
25 | |||
23 | static inline void chp_id_init(struct chp_id *chpid) | 26 | static inline void chp_id_init(struct chp_id *chpid) |
24 | { | 27 | { |
25 | memset(chpid, 0, sizeof(struct chp_id)); | 28 | memset(chpid, 0, sizeof(struct chp_id)); |
@@ -40,9 +43,6 @@ static inline void chp_id_next(struct chp_id *chpid) | |||
40 | } | 43 | } |
41 | } | 44 | } |
42 | 45 | ||
43 | #ifdef __KERNEL__ | ||
44 | #include <asm/cio.h> | ||
45 | |||
46 | static inline int chp_id_is_valid(struct chp_id *chpid) | 46 | static inline int chp_id_is_valid(struct chp_id *chpid) |
47 | { | 47 | { |
48 | return (chpid->cssid <= __MAX_CSSID); | 48 | return (chpid->cssid <= __MAX_CSSID); |