mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
8a8d24bdf1
Try to maintain some consistency between these variables by using _plat as a suffix for them. Signed-off-by: Simon Glass <sjg@chromium.org>
15 lines
246 B
C
15 lines
246 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2017 NXP
|
|
*/
|
|
|
|
#ifndef _ASM_ARCH_IMX8_POWER_DOMAIN_H
|
|
#define _ASM_ARCH_IMX8_POWER_DOMAIN_H
|
|
|
|
#include <asm/arch/sci/types.h>
|
|
|
|
struct imx8_power_domain_plat {
|
|
sc_rsrc_t resource_id;
|
|
};
|
|
|
|
#endif
|