1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Support for Intel Camera Imaging ISP subsystem. 4 * Copyright (c) 2015, Intel Corporation. 5 */ 6 7 #ifndef __PLATFORM_SUPPORT_H_INCLUDED__ 8 #define __PLATFORM_SUPPORT_H_INCLUDED__ 9 10 /** 11 * @file 12 * Platform specific includes and functionality. 13 */ 14 15 #include <linux/delay.h> 16 #include <linux/kernel.h> 17 #include <linux/string.h> 18 19 #define UINT16_MAX USHRT_MAX 20 #define UINT32_MAX UINT_MAX 21 #define UCHAR_MAX (255) 22 23 #define CSS_ALIGN(d, a) d __attribute__((aligned(a))) 24 25 #endif /* __PLATFORM_SUPPORT_H_INCLUDED__ */ 26