From 1151a0f089ca92496da6242fc1f83018df412e26 Mon Sep 17 00:00:00 2001 From: Hu hui Date: Fri, 15 Oct 2010 16:31:58 +0800 Subject: ENGR00132639-2 Power: mxc_pwerkey break mx25 kernel build Driver Part define a new platform data struct, and Put the pmic callback register into platform data structure, then we can cover all pmic Signed-off-by: Hu Hui --- include/linux/powerkey.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 include/linux/powerkey.h (limited to 'include') diff --git a/include/linux/powerkey.h b/include/linux/powerkey.h new file mode 100644 index 000000000000..b59cb69c31ed --- /dev/null +++ b/include/linux/powerkey.h @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2010 Freescale Semiconductor, Inc. All Rights Reserved. + */ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + + * 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ +#ifndef POWER_KEY_H +#define POWER_KEY_H + +typedef void (*key_press_call_back)(void *); +typedef void (*register_key_press_call_back)(key_press_call_back, void *); + +struct power_key_platform_data { + register_key_press_call_back register_key_press_handler; + void *param; /* param of the handler */ +}; + +#endif /* POWER_KEY_H */ -- cgit v1.2.3