blob: 4c5e380d5d13d08f00ee491ed90689786fcf386c [file] [log] [blame]
Karthikeyan Ramasubramanian0bb5b1c2022-05-02 13:16:15 -06001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#ifndef __DRIVERS_USB_HUB_CHIP_H__
4#define __DRIVERS_USB_HUB_CHIP_H__
5
Arthur Heymans5d8fe862022-05-13 17:30:47 +02006#include <acpi/acpi.h>
7
Karthikeyan Ramasubramanian0bb5b1c2022-05-02 13:16:15 -06008struct drivers_usb_hub_config {
9 const char *name;
10 const char *desc;
11 unsigned int port_count; /* Number of Super-speed or High-speed ports */
Arthur Heymans5d8fe862022-05-13 17:30:47 +020012 char acpi_name[ACPI_NAME_BUFFER_SIZE]; /* Set by the acpi_name ops */
Karthikeyan Ramasubramanian0bb5b1c2022-05-02 13:16:15 -060013};
14
15#endif /* __DRIVERS_USB_HUB_CHIP_H__ */