pinctrl: rockchip: Clean the unused type and label
authorDavid Wu <david.wu@rock-chips.com>
Tue, 16 Apr 2019 13:57:54 +0000 (21:57 +0800)
committerKever Yang <kever.yang@rock-chips.com>
Wed, 8 May 2019 09:34:12 +0000 (17:34 +0800)
As the mux/pull/drive feature implement at own file,
the type and label are not necessary.

Signed-off-by: David Wu <david.wu@rock-chips.com>
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
drivers/pinctrl/rockchip/pinctrl-rk3036.c
drivers/pinctrl/rockchip/pinctrl-rk3128.c
drivers/pinctrl/rockchip/pinctrl-rk3188.c
drivers/pinctrl/rockchip/pinctrl-rk322x.c
drivers/pinctrl/rockchip/pinctrl-rk3288.c
drivers/pinctrl/rockchip/pinctrl-rk3328.c
drivers/pinctrl/rockchip/pinctrl-rk3368.c
drivers/pinctrl/rockchip/pinctrl-rk3399.c
drivers/pinctrl/rockchip/pinctrl-rockchip.h
drivers/pinctrl/rockchip/pinctrl-rv1108.c

index 498b633..28c9051 100644 (file)
@@ -83,8 +83,6 @@ static struct rockchip_pin_bank rk3036_pin_banks[] = {
 static struct rockchip_pin_ctrl rk3036_pin_ctrl = {
        .pin_banks              = rk3036_pin_banks,
        .nr_banks               = ARRAY_SIZE(rk3036_pin_banks),
-       .label                  = "RK3036-GPIO",
-       .type                   = RK3036,
        .grf_mux_offset         = 0xa8,
        .set_mux                = rk3036_set_mux,
        .set_pull               = rk3036_set_pull,
index 104b76c..3eb4d95 100644 (file)
@@ -183,8 +183,6 @@ static struct rockchip_pin_bank rk3128_pin_banks[] = {
 static struct rockchip_pin_ctrl rk3128_pin_ctrl = {
        .pin_banks              = rk3128_pin_banks,
        .nr_banks               = ARRAY_SIZE(rk3128_pin_banks),
-       .label                  = "RK3128-GPIO",
-       .type                   = RK3128,
        .grf_mux_offset         = 0xa8,
        .iomux_recalced         = rk3128_mux_recalced_data,
        .niomux_recalced        = ARRAY_SIZE(rk3128_mux_recalced_data),
index e09c799..043764f 100644 (file)
@@ -108,8 +108,6 @@ static struct rockchip_pin_bank rk3188_pin_banks[] = {
 static struct rockchip_pin_ctrl rk3188_pin_ctrl = {
        .pin_banks              = rk3188_pin_banks,
        .nr_banks               = ARRAY_SIZE(rk3188_pin_banks),
-       .label                  = "RK3188-GPIO",
-       .type                   = RK3188,
        .grf_mux_offset         = 0x60,
        .set_mux                = rk3188_set_mux,
        .set_pull               = rk3188_set_pull,
index b69d979..c5e4fe3 100644 (file)
@@ -268,8 +268,6 @@ static struct rockchip_pin_bank rk3228_pin_banks[] = {
 static struct rockchip_pin_ctrl rk3228_pin_ctrl = {
        .pin_banks              = rk3228_pin_banks,
        .nr_banks               = ARRAY_SIZE(rk3228_pin_banks),
-       .label                  = "RK3228-GPIO",
-       .type                   = RK3288,
        .grf_mux_offset         = 0x0,
        .iomux_routes           = rk3228_mux_route_data,
        .niomux_routes          = ARRAY_SIZE(rk3228_mux_route_data),
index 24af359..7ae147f 100644 (file)
@@ -223,8 +223,6 @@ static struct rockchip_pin_bank rk3288_pin_banks[] = {
 static struct rockchip_pin_ctrl rk3288_pin_ctrl = {
        .pin_banks              = rk3288_pin_banks,
        .nr_banks               = ARRAY_SIZE(rk3288_pin_banks),
-       .label                  = "RK3288-GPIO",
-       .type                   = RK3288,
        .grf_mux_offset         = 0x0,
        .pmu_mux_offset         = 0x84,
        .iomux_routes           = rk3288_mux_route_data,
index 7ac5c02..d4d37af 100644 (file)
@@ -281,8 +281,6 @@ static struct rockchip_pin_bank rk3328_pin_banks[] = {
 static struct rockchip_pin_ctrl rk3328_pin_ctrl = {
        .pin_banks              = rk3328_pin_banks,
        .nr_banks               = ARRAY_SIZE(rk3328_pin_banks),
-       .label                  = "RK3328-GPIO",
-       .type                   = RK3288,
        .grf_mux_offset         = 0x0,
        .iomux_recalced         = rk3328_mux_recalced_data,
        .niomux_recalced        = ARRAY_SIZE(rk3328_mux_recalced_data),
index 06de27a..6cb7bb4 100644 (file)
@@ -155,8 +155,6 @@ static struct rockchip_pin_bank rk3368_pin_banks[] = {
 static struct rockchip_pin_ctrl rk3368_pin_ctrl = {
        .pin_banks              = rk3368_pin_banks,
        .nr_banks               = ARRAY_SIZE(rk3368_pin_banks),
-       .label                  = "RK3368-GPIO",
-       .type                   = RK3368,
        .grf_mux_offset         = 0x0,
        .pmu_mux_offset         = 0x0,
        .set_mux                = rk3368_set_mux,
index 68bb492..75634e9 100644 (file)
@@ -290,8 +290,6 @@ static struct rockchip_pin_bank rk3399_pin_banks[] = {
 static struct rockchip_pin_ctrl rk3399_pin_ctrl = {
        .pin_banks              = rk3399_pin_banks,
        .nr_banks               = ARRAY_SIZE(rk3399_pin_banks),
-       .label                  = "RK3399-GPIO",
-       .type                   = RK3399,
        .grf_mux_offset         = 0xe000,
        .pmu_mux_offset         = 0x0,
        .grf_drv_offset         = 0xe100,
index c21b796..1c6fc2c 100644 (file)
@@ -8,16 +8,6 @@
 
 #include <linux/types.h>
 
-enum rockchip_pinctrl_type {
-       RV1108,
-       RK3036,
-       RK3128,
-       RK3188,
-       RK3288,
-       RK3368,
-       RK3399,
-};
-
 /**
  * Encode variants of iomux registers into a type variable
  */
@@ -266,8 +256,6 @@ struct rockchip_pin_ctrl {
        struct rockchip_pin_bank        *pin_banks;
        u32                             nr_banks;
        u32                             nr_pins;
-       char                            *label;
-       enum rockchip_pinctrl_type      type;
        int                             grf_mux_offset;
        int                             pmu_mux_offset;
        int                             grf_drv_offset;
index 6456483..0bcf11b 100644 (file)
@@ -250,8 +250,6 @@ static struct rockchip_pin_bank rv1108_pin_banks[] = {
 static struct rockchip_pin_ctrl rv1108_pin_ctrl = {
        .pin_banks              = rv1108_pin_banks,
        .nr_banks               = ARRAY_SIZE(rv1108_pin_banks),
-       .label                  = "RV1108-GPIO",
-       .type                   = RV1108,
        .grf_mux_offset         = 0x10,
        .pmu_mux_offset         = 0x0,
        .iomux_recalced         = rv1108_mux_recalced_data,