Revision d1bc75d7595b237f78b594509ea7cc159f98cae9 authored by WANG Xuerui on 26 July 2022, 15:57:20 UTC, committed by Huacai Chen on 29 July 2022, 10:22:32 UTC
Support for the syntactic sugar is present in upstream binutils port
from the beginning. Use it for shorter lines and better consistency.
Generated code should be identical.

Signed-off-by: WANG Xuerui <git@xen0n.name>
Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
1 parent d47b2dc
Raw File
reset-prcc.h
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __RESET_PRCC_H
#define __RESET_PRCC_H

#include <linux/reset-controller.h>
#include <linux/io.h>

/**
 * struct u8500_prcc_reset - U8500 PRCC reset controller state
 * @rcdev: reset controller device
 * @phy_base: the physical base address for each PRCC block
 * @base: the remapped PRCC bases
 */
struct u8500_prcc_reset {
	struct reset_controller_dev rcdev;
	u32 phy_base[CLKRST_MAX];
	void __iomem *base[CLKRST_MAX];
};

void u8500_prcc_reset_init(struct device_node *np, struct u8500_prcc_reset *ur);

#endif
back to top