diff options
| author | Tom Rini <[email protected]> | 2023-08-31 12:23:36 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-08-31 12:23:36 -0400 |
| commit | b81a024e4a37097d3dcffccb225850f8f6dc8277 (patch) | |
| tree | dcfd69d6c2e7c25003767a28841f1effe7404048 /include | |
| parent | c37be6a39a338187cfb140a6a1a8d1f9550c909d (diff) | |
| parent | 36b900e8bd57fec7b4c200a368883e1e59e4f27f (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.h | 12 |
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__ */ |
