Files
IT87/compat.h
Guenter Roeck 63613d0d38 Add compat.h for backwards compatibility
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2012-03-27 08:30:15 -07:00

25 lines
520 B
C

/*---------------------------------------------------------------------------
*
* compat.h
* Copyright (c) 2012 Guenter Roeck <linux@roeck-us.net>
*
*---------------------------------------------------------------------------
*/
#ifndef COMPAT_H
#define COMPAT_H
#ifndef kstrtol
#define kstrtol strict_strtol
#endif
#ifndef kstrtoul
#define kstrtoul strict_strtoul
#endif
#ifndef request_muxed_region
#define request_muxed_region(a, b, c) (true)
#define release_region(a, b)
#endif
#endif /* COMPAT_H */