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