Commit d267258e authored by Ofer Levi's avatar Ofer Levi Committed by Greg Kroah-Hartman

ARC: [plat-eznps] Add missing struct nps_host_reg_aux_dpc

[ Upstream commit 05b466bf ]

Fixing compilation issue caused by missing struct nps_host_reg_aux_dpc
definition.

Fixes: 3f9cd874 ("ARC: [plat-eznps] avoid toggling of DPC register")
Reported-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarOfer Levi <oferle@mellanox.com>
Signed-off-by: default avatarVineet Gupta <vgupta@synopsys.com>
Signed-off-by: default avatarSasha Levin <alexander.levin@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2312e6a8
...@@ -143,6 +143,15 @@ struct nps_host_reg_gim_p_int_dst { ...@@ -143,6 +143,15 @@ struct nps_host_reg_gim_p_int_dst {
}; };
/* AUX registers definition */ /* AUX registers definition */
struct nps_host_reg_aux_dpc {
union {
struct {
u32 ien:1, men:1, hen:1, reserved:29;
};
u32 value;
};
};
struct nps_host_reg_aux_udmc { struct nps_host_reg_aux_udmc {
union { union {
struct { struct {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment