diff options
author | Dr. David Alan Gilbert <[email protected]> | 2024-05-30 21:52:45 +0100 |
---|---|---|
committer | Xu Yilun <[email protected]> | 2024-06-14 10:18:11 +0800 |
commit | 3a0fa8e97d3024de199634667900b6a90bbe43d0 (patch) | |
tree | 2289f6d090e281c887c11cd65baabc6b96c4d0c4 | |
parent | c107697c82af8b9a0f1f914fa961cdb87a1a825f (diff) |
fpga: altera-fpga2sdram: remove unused struct 'prop_map'
'prop_map' has been unused since the original
commit e5f8efa5c8bf ("ARM: socfpga: fpga bridge driver support").
Remove it.
Signed-off-by: Dr. David Alan Gilbert <[email protected]>
Reviewed-by: Russ Weight <[email protected]>
Acked-by: Xu Yilun <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Xu Yilun <[email protected]>
-rw-r--r-- | drivers/fpga/altera-fpga2sdram.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/fpga/altera-fpga2sdram.c b/drivers/fpga/altera-fpga2sdram.c index 6b60ca004345..f4de3fea0b2d 100644 --- a/drivers/fpga/altera-fpga2sdram.c +++ b/drivers/fpga/altera-fpga2sdram.c @@ -75,12 +75,6 @@ static int alt_fpga2sdram_enable_set(struct fpga_bridge *bridge, bool enable) return _alt_fpga2sdram_enable_set(bridge->priv, enable); } -struct prop_map { - char *prop_name; - u32 *prop_value; - u32 prop_max; -}; - static const struct fpga_bridge_ops altera_fpga2sdram_br_ops = { .enable_set = alt_fpga2sdram_enable_set, .enable_show = alt_fpga2sdram_enable_show, |