armbian_build/patch/kernel/archive/sunxi-6.2/patches.megous/misc-ppkb-manager-Remove-BLOCKED-flag.patch
The-going 77674a2b76
Sunxi 6.2 (#4883)
* sunxi-6.2: add megous patches

* sunxi-6.2: add series.conf

* sunxi-6.2: add armbian patches

* sunxi-6.2: mfd: sunxi-ac200: fix error initialization

* sunxi-6.2: Extract patches again after rebasing

---------

Co-authored-by: Igor Pečovnik <igor@armbian.com>
2023-03-03 19:09:22 +01:00

61 lines
1.8 KiB
Diff

From 461061622b5d810b50e0394f603a3af5345c10f9 Mon Sep 17 00:00:00 2001
From: Ondrej Jirman <megi@xff.cz>
Date: Fri, 9 Dec 2022 21:48:59 +0100
Subject: [PATCH 376/391] misc: ppkb-manager: Remove BLOCKED flag
Signed-off-by: Ondrej Jirman <megi@xff.cz>
---
drivers/misc/ppkb-manager.c | 8 --------
1 file changed, 8 deletions(-)
diff --git a/drivers/misc/ppkb-manager.c b/drivers/misc/ppkb-manager.c
index d705a0ab0..e5b5efe09 100644
--- a/drivers/misc/ppkb-manager.c
+++ b/drivers/misc/ppkb-manager.c
@@ -31,7 +31,6 @@
enum {
KBPWR_F_DISABLED,
KBPWR_F_EMERGENCY_SHUTDOWN,
- KBPWR_F_BLOCKED,
};
enum {
@@ -338,7 +337,6 @@ static int kbpwr_handle_critical(struct kbpwr_dev *kbpwr)
"critically low capacity reached\n");
//hw_protection_shutdown("Critical capacity", 30000);
- //set_bit(KBPWR_F_BLOCKED, kbpwr->flags);
return true;
}
@@ -354,8 +352,6 @@ static void kbpwr_work(struct work_struct *work)
if (test_bit(KBPWR_F_DISABLED, kbpwr->flags))
return;
- if (test_bit(KBPWR_F_BLOCKED, kbpwr->flags))
- return;
mutex_lock(&kbpwr->lock);
@@ -761,8 +757,6 @@ static int kbpwr_status_show(struct seq_file *s, void *data)
seq_printf(s, "\t\"disabled\": %s,\n",
test_bit(KBPWR_F_DISABLED, kbpwr->flags) ? "true" : "false");
- seq_printf(s, "\t\"blocked\": %s,\n",
- test_bit(KBPWR_F_BLOCKED, kbpwr->flags) ? "true" : "false");
seq_printf(s, "\t\"emergency_shutdown_enable\": %s,\n",
test_bit(KBPWR_F_EMERGENCY_SHUTDOWN, kbpwr->flags) ? "true" : "false");
@@ -854,8 +848,6 @@ static int kbpwr_probe(struct platform_device *pdev)
dev_info(dev, "Pinephone keyboard power manager ready\n");
set_bit(KBPWR_F_EMERGENCY_SHUTDOWN, kbpwr->flags);
- if (of_property_read_bool(np, "blocked"))
- set_bit(KBPWR_F_BLOCKED, kbpwr->flags);
queue_delayed_work(kbpwr->wq, &kbpwr->work, msecs_to_jiffies(10000));
--
2.35.3