1*847cd447SFrançois Tigeot /* 2*847cd447SFrançois Tigeot * Copyright (c) 2020 François Tigeot <ftigeot@wolfpond.org> 3*847cd447SFrançois Tigeot * All rights reserved. 4*847cd447SFrançois Tigeot * 5*847cd447SFrançois Tigeot * Redistribution and use in source and binary forms, with or without 6*847cd447SFrançois Tigeot * modification, are permitted provided that the following conditions 7*847cd447SFrançois Tigeot * are met: 8*847cd447SFrançois Tigeot * 1. Redistributions of source code must retain the above copyright 9*847cd447SFrançois Tigeot * notice unmodified, this list of conditions, and the following 10*847cd447SFrançois Tigeot * disclaimer. 11*847cd447SFrançois Tigeot * 2. Redistributions in binary form must reproduce the above copyright 12*847cd447SFrançois Tigeot * notice, this list of conditions and the following disclaimer in the 13*847cd447SFrançois Tigeot * documentation and/or other materials provided with the distribution. 14*847cd447SFrançois Tigeot * 15*847cd447SFrançois Tigeot * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16*847cd447SFrançois Tigeot * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17*847cd447SFrançois Tigeot * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18*847cd447SFrançois Tigeot * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19*847cd447SFrançois Tigeot * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20*847cd447SFrançois Tigeot * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21*847cd447SFrançois Tigeot * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22*847cd447SFrançois Tigeot * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23*847cd447SFrançois Tigeot * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24*847cd447SFrançois Tigeot * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25*847cd447SFrançois Tigeot */ 26*847cd447SFrançois Tigeot 27*847cd447SFrançois Tigeot #ifndef _ASM_IOMAP_H_ 28*847cd447SFrançois Tigeot #define _ASM_IOMAP_H_ 29*847cd447SFrançois Tigeot 30*847cd447SFrançois Tigeot #include <linux/fs.h> 31*847cd447SFrançois Tigeot #include <linux/mm.h> 32*847cd447SFrançois Tigeot #include <linux/uaccess.h> 33*847cd447SFrançois Tigeot #include <asm/cacheflush.h> 34*847cd447SFrançois Tigeot #include <asm/pgtable.h> 35*847cd447SFrançois Tigeot 36*847cd447SFrançois Tigeot #endif /* _ASM_IOMAP_H_ */ 37