Change-Id: I8d69be8e47f903785d659ae6929e9acacfc79ae2 Signed-off-by: Pranaya Deomani <pranayadeomani@protonmail.com>
28 lines
873 B
C
Executable File
28 lines
873 B
C
Executable File
/*******************************************************************************
|
|
** Copyright (C), 2008-2016, OPPO Mobile Comm Corp., Ltd.
|
|
** ODM_WT_EDIT
|
|
** FILE: - update_tpfw_notifier.h
|
|
** Description : This program is for touch firmware update notifier
|
|
** Version: 1.0
|
|
** Date : 2018/11/27
|
|
** Author: Zhonghua Hu@ODM_WT.BSP.TP-FP.TP
|
|
**
|
|
** -------------------------Revision History:----------------------------------
|
|
** <author> <data> <version > <desc>
|
|
**
|
|
**
|
|
*******************************************************************************/
|
|
|
|
#include <linux/notifier.h>
|
|
#include <linux/export.h>
|
|
|
|
|
|
|
|
|
|
extern struct atomic_notifier_head tpfw_notifier_list;
|
|
|
|
extern int update_tpfw_register_client(struct notifier_block *nb);
|
|
extern int update_tpfw_unregister_client(struct notifier_block *nb);
|
|
extern int update_tpfw_notifier_call_chain(unsigned long val, void *v);
|
|
|