pvblock.h 339 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0+
  2. *
  3. * (C) 2020 EPAM Systems Inc.
  4. */
  5. #ifndef _PVBLOCK_H
  6. #define _PVBLOCK_H
  7. /**
  8. * pvblock_init() - Initialize para-virtual block device class driver
  9. *
  10. * Bind PV block to UCLASS_ROOT device and probe all UCLASS_PVBLOCK
  11. * virtual block devices.
  12. */
  13. void pvblock_init(void);
  14. #endif /* _PVBLOCK_H */