summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-08-31 12:23:36 -0400
committerTom Rini <[email protected]>2023-08-31 12:23:36 -0400
commitb81a024e4a37097d3dcffccb225850f8f6dc8277 (patch)
treedcfd69d6c2e7c25003767a28841f1effe7404048 /include
parentc37be6a39a338187cfb140a6a1a8d1f9550c909d (diff)
parent36b900e8bd57fec7b4c200a368883e1e59e4f27f (diff)
Merge branch '2023-08-30-assorted-code-improvements' into next
- pcie-bcmstb improvements, nvmxip improvements, fix a corner case in the serial uclass, send error messages to stderr in host tools, fwu library CI state fixup, turn some setexpr diagnostic messages to debug
Diffstat (limited to 'include')
-rw-r--r--include/nvmxip.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/nvmxip.h b/include/nvmxip.h
index f4ef37725d2..726fffeb3e8 100644
--- a/include/nvmxip.h
+++ b/include/nvmxip.h
@@ -29,4 +29,16 @@ struct nvmxip_plat {
lbaint_t lba;
};
+/**
+ * nvmxip_bind() - post binding treatments
+ * @dev: the NVMXIP device
+ *
+ * Create and probe a child block device.
+ *
+ * Return:
+ *
+ * 0 on success. Otherwise, failure
+ */
+int nvmxip_probe(struct udevice *udev);
+
#endif /* __DRIVER_NVMXIP_H__ */