diff options
author | David Lechner <dlechner@baylibre.com> | 2024-06-09 23:06:15 +0300 |
---|---|---|
committer | William Breathitt Gray <wbg@kernel.org> | 2024-07-01 04:31:42 +0300 |
commit | bc4666be63bdc7c562cfb2e9ea42cdb2c444a5b2 (patch) | |
tree | fc67aa2531971cff87cd47885b16daf9d41faf80 /drivers/counter | |
parent | 10365dd4c1842d0da422b56c5aa3827db0ca08d8 (diff) | |
download | linux-bc4666be63bdc7c562cfb2e9ea42cdb2c444a5b2.tar.xz |
counter: ti-eqep: remove unused struct member
Since commit 8817c2d03a85 ("counter: ti-eqep: Convert to counter_priv()
wrapper") the counter field in struct ti_eqep_cnt is not used anymore.
Remove it.
Signed-off-by: David Lechner <dlechner@baylibre.com>
Reviewed-by: Judith Mendez <jm@ti.com>
Link: https://lore.kernel.org/r/20240609-ti-eqep-cleanup-v1-1-9d67939c763a@baylibre.com
Signed-off-by: William Breathitt Gray <wbg@kernel.org>
Diffstat (limited to 'drivers/counter')
-rw-r--r-- | drivers/counter/ti-eqep.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/counter/ti-eqep.c b/drivers/counter/ti-eqep.c index a27622efebb0..db28fc42cf16 100644 --- a/drivers/counter/ti-eqep.c +++ b/drivers/counter/ti-eqep.c @@ -122,7 +122,6 @@ enum ti_eqep_count_func { }; struct ti_eqep_cnt { - struct counter_device counter; struct regmap *regmap32; struct regmap *regmap16; }; |