1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2024-11-19 13:27:49 +00:00
a155-U-u1/kernel-5.10/drivers/misc/mediatek/lpm/lpm_registry.h
2024-03-11 06:53:12 +11:00

24 lines
356 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2019 MediaTek Inc.
*/
#ifndef __LPM_REGISTRY_H__
#define __LPM_REGISTRY_H__
#include <linux/cpumask.h>
#include <lpm.h>
typedef int (*blockcall)(int cpu, void *p);
enum LPM_REG_TYPE {
LPM_REG_PER_CPU,
LPM_REG_ALL_ONLINE,
};
int lpm_do_work(int type, blockcall call, void *dest);
#endif