]> Git Repo - J-linux.git/blob - include/linux/usb/onboard_dev.h
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / include / linux / usb / onboard_dev.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #ifndef __LINUX_USB_ONBOARD_DEV_H
4 #define __LINUX_USB_ONBOARD_DEV_H
5
6 struct usb_device;
7 struct list_head;
8
9 #if IS_ENABLED(CONFIG_USB_ONBOARD_DEV)
10 void onboard_dev_create_pdevs(struct usb_device *parent_dev, struct list_head *pdev_list);
11 void onboard_dev_destroy_pdevs(struct list_head *pdev_list);
12 #else
13 static inline void onboard_dev_create_pdevs(struct usb_device *parent_dev,
14                                             struct list_head *pdev_list) {}
15 static inline void onboard_dev_destroy_pdevs(struct list_head *pdev_list) {}
16 #endif
17
18 #endif /* __LINUX_USB_ONBOARD_DEV_H */
This page took 0.0386879999999999 seconds and 4 git commands to generate.