Commit 501fe31d authored by Cornelia Huck's avatar Cornelia Huck Committed by Linus Torvalds
Browse files

[PATCH] s390: fix to_channelpath macro



Fix broken to_channelpath macro (fortunately worked in all current cases...).

Signed-off-by: default avatarCornelia Huck <cohuck@de.ibm.com>
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent cd2d2bf6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,6 +68,6 @@ extern void *chsc_get_chp_desc(struct subchannel*, int);

extern int chsc_enable_facility(int);

#define to_channelpath(dev) container_of(dev, struct channel_path, dev)
#define to_channelpath(device) container_of(device, struct channel_path, dev)

#endif