mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
Include linux/io.h instead of asm/io.h everywhere. linux/io.h includes asm/io.h, so this shouldn't cause any problems. Instead this might help for some randconfig build errors which were reported due to some undefined io related functions. Also move the changed include so it stays grouped together with other includes from the same directory. For ctcm_mpc.c also remove not needed comments (actually questions). Acked-by: Christian Borntraeger <borntraeger@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
15 lines
360 B
C
15 lines
360 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_S390_DMA_H
|
|
#define _ASM_S390_DMA_H
|
|
|
|
#include <linux/io.h>
|
|
|
|
/*
|
|
* MAX_DMA_ADDRESS is ambiguous because on s390 its completely unrelated
|
|
* to DMA. It _is_ used for the s390 memory zone split at 2GB caused
|
|
* by the 31 bit heritage.
|
|
*/
|
|
#define MAX_DMA_ADDRESS 0x80000000
|
|
|
|
#endif /* _ASM_S390_DMA_H */
|