Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca071afe authored by Sean Wang's avatar Sean Wang Committed by Linus Walleij
Browse files

pinctrl: mediatek: remove unused fields in struct mtk_eint_hw



The .name field has been not being used in existent code logic, so
it's better that we remove them all.

Signed-off-by: default avatarSean Wang <sean.wang@mediatek.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent e6612a69
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@ struct mtk_eint_regs {
};

struct mtk_eint_hw {
	const char	*name;
	u8		port_mask;
	u8		ports;
	unsigned int	ap_num;
+0 −1
Original line number Diff line number Diff line
@@ -532,7 +532,6 @@ static const struct mtk_pinctrl_devdata mt2701_pinctrl_data = {
	.port_mask = 0x1f,
	.port_align = 4,
	.eint_hw = {
		.name = "mt2701_eint",
		.port_mask = 6,
		.ports     = 6,
		.ap_num    = 169,
+0 −1
Original line number Diff line number Diff line
@@ -577,7 +577,6 @@ static const struct mtk_pinctrl_devdata mt2712_pinctrl_data = {
	.port_mask = 0xf,
	.port_align = 4,
	.eint_hw = {
		.name = "mt2712_eint",
		.port_mask = 0xf,
		.ports     = 8,
		.ap_num    = 229,
+0 −1
Original line number Diff line number Diff line
@@ -301,7 +301,6 @@ static const struct mtk_pinctrl_devdata mt8127_pinctrl_data = {
	.port_mask = 0xf,
	.port_align = 4,
	.eint_hw = {
		.name = "mt8127_eint",
		.port_mask = 7,
		.ports     = 6,
		.ap_num    = 143,
+0 −1
Original line number Diff line number Diff line
@@ -314,7 +314,6 @@ static const struct mtk_pinctrl_devdata mt8135_pinctrl_data = {
	.port_mask = 0xf,
	.port_align = 4,
	.eint_hw = {
		.name = "mt8135_eint",
		.port_mask = 7,
		.ports     = 6,
		.ap_num    = 192,
Loading