From 4e9674c373a407d1f876eaa30d2a358dbbc1dabb Mon Sep 17 00:00:00 2001 From: Laura Abbott Date: Fri, 20 Jul 2012 10:10:41 -0700 Subject: [PATCH] gpu: ion: Add dummy msm_ion header file The msm specific parts of ion.h are being moved into a new header file. For now, add a dummy header file to get clients transitioned over. Change-Id: Iac039678e1c3f15d87e67aa667f7e9883ca16669 Signed-off-by: Laura Abbott --- include/linux/Kbuild | 1 + include/linux/msm_ion.h | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 include/linux/msm_ion.h diff --git a/include/linux/Kbuild b/include/linux/Kbuild index b2b79b12ee9..277fdf1262d 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild @@ -259,6 +259,7 @@ header-y += mroute6.h header-y += msdos_fs.h header-y += msg.h header-y += msm_adc.h +header-y += msm_ion.h header-y += epm_adc.h header-y += mtio.h header-y += n_r3964.h diff --git a/include/linux/msm_ion.h b/include/linux/msm_ion.h new file mode 100644 index 00000000000..0e28e54108c --- /dev/null +++ b/include/linux/msm_ion.h @@ -0,0 +1,22 @@ +/* + * include/linux/ion.h + * + * Copyright (c) 2012, Code Aurora Forum. All rights reserved. + * + * This software is licensed under the terms of the GNU General Public + * License version 2, as published by the Free Software Foundation, and + * may be copied, distributed, and modified under those terms. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + */ + +#ifndef _LINUX_MSM_ION_H +#define _LINUX_MSM_ION_H + +#include + +#endif