Commit 998c1de5 authored by Carlos A Petry's avatar Carlos A Petry Committed by Moritz Fischer

fpga: altera-cvp: Fix function definition argument

Fix the following checkpatch warning:
WARNING: function definition argument 'struct altera_cvp_conf *'
Signed-off-by: default avatarCarlos A Petry <capetry.dev@gmail.com>
Signed-off-by: default avatarMoritz Fischer <mdf@kernel.org>
parent 5f9e832c
......@@ -57,7 +57,8 @@ struct altera_cvp_conf {
struct fpga_manager *mgr;
struct pci_dev *pci_dev;
void __iomem *map;
void (*write_data)(struct altera_cvp_conf *, u32);
void (*write_data)(struct altera_cvp_conf *conf,
u32 data);
char mgr_name[64];
u8 numclks;
};
......
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