mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
power: generic-adc-battery: use to_delayed_work
Use to_delayed_work() instead of open-coding it. Signed-off-by: Geliang Tang <geliangtang@163.com> Signed-off-by: Sebastian Reichel <sre@kernel.org>
This commit is contained in:
parent
8802563251
commit
127d286848
@ -206,7 +206,7 @@ static void gab_work(struct work_struct *work)
|
||||
bool is_plugged;
|
||||
int status;
|
||||
|
||||
delayed_work = container_of(work, struct delayed_work, work);
|
||||
delayed_work = to_delayed_work(work);
|
||||
adc_bat = container_of(delayed_work, struct gab, bat_work);
|
||||
pdata = adc_bat->pdata;
|
||||
status = adc_bat->status;
|
||||
|
Loading…
Reference in New Issue
Block a user