diff options
Diffstat (limited to 'include/pvblock.h')
-rw-r--r-- | include/pvblock.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/pvblock.h b/include/pvblock.h new file mode 100644 index 00000000000..1023a6ab3bd --- /dev/null +++ b/include/pvblock.h @@ -0,0 +1,17 @@ +/* SPDX-License-Identifier: GPL-2.0+ + * + * (C) 2020 EPAM Systems Inc. + */ + +#ifndef _PVBLOCK_H +#define _PVBLOCK_H + +/** + * pvblock_init() - Initialize para-virtual block device class driver + * + * Bind PV block to UCLASS_ROOT device and probe all UCLASS_PVBLOCK + * virtual block devices. + */ +void pvblock_init(void); + +#endif /* _PVBLOCK_H */ |