fpga: altera-pr-ip: Make alt_pr_unregister function void

Make alt_pr_unregister function void, since it always returns 0,
and nothing would act on the value anyways.

Signed-off-by: Moritz Fischer <mdf@kernel.org>
This commit is contained in:
Moritz Fischer
2019-06-26 17:33:09 -07:00
parent 998c1de56d
commit 71d8e94dab
3 changed files with 5 additions and 5 deletions

View File

@@ -13,6 +13,6 @@
#include <linux/io.h>
int alt_pr_register(struct device *dev, void __iomem *reg_base);
int alt_pr_unregister(struct device *dev);
void alt_pr_unregister(struct device *dev);
#endif /* _ALT_PR_IP_CORE_H */