power: supply: qti_battery_charger: Add missing type specifiers

Change-Id: I91435bce8d6b4a0df50adf24cfd74e7a5b9862ad
This commit is contained in:
Arian 2024-02-20 23:02:22 +01:00 committed by Jens Reidel
parent 7a605eafc4
commit 3bbe08972e
No known key found for this signature in database
GPG Key ID: 23C1E5F512C12303

View File

@ -2535,7 +2535,7 @@ static void qti_battery_register_panel_notifier_work(struct work_struct *work)
struct device_node *node;
struct battery_chg_dev *pvt_data = container_of(work, struct battery_chg_dev, panel_notify_register_work.work);
int error = 0;
static retry_count = 3;
static int retry_count = 3;
node = of_find_node_by_name(NULL, "charge-screen");
if (!node) {
@ -2594,7 +2594,7 @@ static void qti_battery_register_panel_sec_notifier_work(struct work_struct *wor
struct device_node *node;
struct battery_chg_dev *pvt_data = container_of(work, struct battery_chg_dev, panel_sec_notify_register_work.work);
int error = 0;
static retry_count = 3;
static int retry_count = 3;
node = of_find_node_by_name(NULL, "charge-screen");
if (!node) {