/drivers/net/fddi/skfp/h/types.h
http://github.com/mirrors/linux · C Header · 35 lines · 17 code · 4 blank · 14 comment · 0 complexity · 7ec393ea0046bd9af51afd057ce57c47 MD5 · raw file
- /* SPDX-License-Identifier: GPL-2.0-or-later */
- /******************************************************************************
- *
- * (C)Copyright 1998,1999 SysKonnect,
- * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
- *
- * The information in this file is provided "AS IS" without warranty.
- *
- ******************************************************************************/
- #include <linux/types.h>
- /*
- ----------------------
- Basic SMT system types
- ----------------------
- */
- #ifndef _TYPES_
- #define _TYPES_
- #define _packed
- #ifndef far
- #define far
- #endif
- #ifndef _far
- #define _far
- #endif
- #define inp(p) ioread8(p)
- #define inpw(p) ioread16(p)
- #define inpd(p) ioread32(p)
- #define outp(p,c) iowrite8(c,p)
- #define outpw(p,s) iowrite16(s,p)
- #define outpd(p,l) iowrite32(l,p)
- #endif /* _TYPES_ */