summaryrefslogtreecommitdiff
path: root/drivers/misc/charger_notify.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/misc/charger_notify.c')
-rw-r--r--drivers/misc/charger_notify.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/drivers/misc/charger_notify.c b/drivers/misc/charger_notify.c
deleted file mode 100644
index 79f9e726f87..00000000000
--- a/drivers/misc/charger_notify.c
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (C) 2014 Motorola Mobility LLC.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published by
- * the Free Software Foundation.
- *
- * 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, see <http://www.gnu.org/licenses/>.
- */
-
-#include <linux/notifier.h>
-#include <linux/charger_notify.h>
-
-static BLOCKING_NOTIFIER_HEAD(charger_notifier_list);
-
-/**
- * charger_register_notify - register a notifier callback for triggering display init
- * @nb: pointer to the notifier block for the callback events.
- *
- */
-void charger_register_notify(struct notifier_block *nb)
-{
- blocking_notifier_chain_register(&charger_notifier_list, nb);
-}
-EXPORT_SYMBOL_GPL(charger_register_notify);
-
-/**
- * charger_unregister_notify - unregister a notifier callback
- * @nb: pointer to the notifier block for the callback events.
- *
- * charger_register_notify() must have been previously called
- * for this function to work properly.
- */
-void charger_unregister_notify(struct notifier_block *nb)
-{
- blocking_notifier_chain_unregister(&charger_notifier_list, nb);
-}
-EXPORT_SYMBOL_GPL(charger_unregister_notify);
-
-void charger_notify_subscriber(unsigned long event)
-{
- blocking_notifier_call_chain(&charger_notifier_list, event, NULL);
-}
-EXPORT_SYMBOL_GPL(charger_notify_subscriber);