Re: [PATCH v12 4/6] fpga: add fpga bridge framework
From: atull <hidden>
Date: 2015-10-28 15:38:33
Also in:
lkml
On Wed, 28 Oct 2015, Steffen Trumtrar wrote:
quoted
+int fpga_bridge_enable(struct fpga_bridge *bridge) +{ + pr_err("%s %s\n", __func__, dev_name(&bridge->dev));Please clean this...quoted
+ + return bridge->br_ops->enable_set(bridge, 1); +} +EXPORT_SYMBOL_GPL(fpga_bridge_enable); + +/** + * fpga_bridge_disable + * @bridge: fpga bridge + * + * Disable transactions on the bridge + * + * Return: 0 for success, error code otherwise. + */ +int fpga_bridge_disable(struct fpga_bridge *bridge) +{ + pr_err("%s %s\n", __func__, dev_name(&bridge->dev));and this up.
OK
quoted
+void fpga_bridge_unregister(struct device *dev) +{ + struct fpga_bridge *bridge = dev_get_drvdata(dev); + + dev_info(&bridge->dev, "%s : %s\n", __func__, bridge->name);Is this necessary information?
I can remove it.
quoted
+static int __init fpga_bridge_dev_init(void) +{ + pr_info("FPGA bridge framework driver\n");Dito. IMHO unnecessary log spam. Maybe change this to dbg?
Sure.
quoted
--- /dev/null +++ b/include/linux/fpga/fpga-bridge.h@@ -0,0 +1,49 @@ +#include <linux/cdev.h>You don't seem to use this.
Correct. I'll take it out. Thanks for the review! Alan