mirror of
https://github.com/openharmony/kernel_linux_common_modules.git
synced 2026-08-27 01:31:36 -04:00
ebc369de9c
Signed-off-by: limerence <shituanhui@huawei.com>
20 lines
338 B
C
Executable File
20 lines
338 B
C
Executable File
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (c) 2023 Huawei Device Co., Ltd.
|
|
*/
|
|
|
|
#ifndef _XPM_MISC_H
|
|
#define _XPM_MISC_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct xpm_region_info {
|
|
uint64_t addr_base;
|
|
uint64_t length;
|
|
};
|
|
|
|
int xpm_register_misc_device(void);
|
|
void xpm_deregister_misc_device(void);
|
|
|
|
#endif /* _XPM_MISC_H */
|