usb-c: Change dir name from usbc to usb_c
For improved readability, change dir name from usbc to usb_c Signed-off-by: Sam Hurst <sbh1187@gmail.com>
This commit is contained in:
parent
d832b04e96
commit
3dd07aebdd
|
@ -437,7 +437,7 @@
|
||||||
/drivers/timer/*hpet* @dcpleung
|
/drivers/timer/*hpet* @dcpleung
|
||||||
/drivers/usb/ @jfischer-no
|
/drivers/usb/ @jfischer-no
|
||||||
/drivers/usb/device/usb_dc_stm32.c @ydamigos @loicpoulain
|
/drivers/usb/device/usb_dc_stm32.c @ydamigos @loicpoulain
|
||||||
/drivers/usbc/ @sambhurst
|
/drivers/usb_c/ @sambhurst
|
||||||
/drivers/video/ @loicpoulain
|
/drivers/video/ @loicpoulain
|
||||||
/drivers/i2c/*b91* @andy-liu-telink
|
/drivers/i2c/*b91* @andy-liu-telink
|
||||||
/drivers/i2c/i2c_ll_stm32* @ydamigos
|
/drivers/i2c/i2c_ll_stm32* @ydamigos
|
||||||
|
|
|
@ -7,7 +7,7 @@ add_subdirectory(misc)
|
||||||
add_subdirectory(pcie)
|
add_subdirectory(pcie)
|
||||||
add_subdirectory(disk)
|
add_subdirectory(disk)
|
||||||
add_subdirectory(usb)
|
add_subdirectory(usb)
|
||||||
add_subdirectory(usbc)
|
add_subdirectory(usb_c)
|
||||||
|
|
||||||
add_subdirectory_ifdef(CONFIG_ADC adc)
|
add_subdirectory_ifdef(CONFIG_ADC adc)
|
||||||
add_subdirectory_ifdef(CONFIG_CLOCK_CONTROL clock_control)
|
add_subdirectory_ifdef(CONFIG_CLOCK_CONTROL clock_control)
|
||||||
|
|
|
@ -139,7 +139,7 @@ source "drivers/mm/Kconfig"
|
||||||
|
|
||||||
source "drivers/power_domain/Kconfig"
|
source "drivers/power_domain/Kconfig"
|
||||||
|
|
||||||
source "drivers/usbc/Kconfig"
|
source "drivers/usb_c/Kconfig"
|
||||||
|
|
||||||
source "drivers/reset/Kconfig"
|
source "drivers/reset/Kconfig"
|
||||||
|
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
# Copyright 2022 The Chromium OS Authors
|
# Copyright 2022 The Chromium OS Authors
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
source "drivers/usbc/tcpc/Kconfig"
|
source "drivers/usb_c/tcpc/Kconfig"
|
|
@ -4,9 +4,9 @@
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
menuconfig USBC_TCPC_DRIVER
|
menuconfig USBC_TCPC_DRIVER
|
||||||
bool "USBC TCPC drivers"
|
bool "USB-C TCPC drivers"
|
||||||
help
|
help
|
||||||
Enable USBC TypeC Port Controller (TCPC) drivers
|
Enable USB TypeC Port Controller (TCPC) drivers
|
||||||
|
|
||||||
if USBC_TCPC_DRIVER
|
if USBC_TCPC_DRIVER
|
||||||
|
|
||||||
|
@ -14,12 +14,12 @@ config USBC_INIT_PRIORITY
|
||||||
int "USBC driver init priority"
|
int "USBC driver init priority"
|
||||||
default 80
|
default 80
|
||||||
help
|
help
|
||||||
USBC device driver initialization priority.
|
USB-C device driver initialization priority.
|
||||||
Do not mess with it unless you know what you are doing.
|
Do not mess with it unless you know what you are doing.
|
||||||
Note that the priority needs to be lower than the USBC stack
|
Note that the priority needs to be lower than the USBC stack
|
||||||
so that it can start before the USBC sub-system.
|
so that it can start before the USBC sub-system.
|
||||||
|
|
||||||
source "drivers/usbc/tcpc/Kconfig.tcpc_stm32"
|
source "drivers/usb_c/tcpc/Kconfig.tcpc_stm32"
|
||||||
|
|
||||||
module = USBC
|
module = USBC
|
||||||
module-str = usbc
|
module-str = usbc
|
|
@ -8,7 +8,7 @@
|
||||||
#define ZEPHYR_DRIVERS_USBC_DEVICE_UCPD_STM32_PRIV_H_
|
#define ZEPHYR_DRIVERS_USBC_DEVICE_UCPD_STM32_PRIV_H_
|
||||||
|
|
||||||
#include <zephyr/sys/util.h>
|
#include <zephyr/sys/util.h>
|
||||||
#include <zephyr/drivers/usbc/usbc_tcpc.h>
|
#include <zephyr/drivers/usb_c/usbc_tcpc.h>
|
||||||
#include <stm32_ll_ucpd.h>
|
#include <stm32_ll_ucpd.h>
|
||||||
|
|
||||||
/**
|
/**
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* @brief USBC Power Delivery API used for USBC drivers
|
* @brief USB-C Power Delivery API used for USB-C drivers
|
||||||
*
|
*
|
||||||
* The information in this file was taken from the USB PD
|
* The information in this file was taken from the USB PD
|
||||||
* Specification Revision 3.0, Version 2.0
|
* Specification Revision 3.0, Version 2.0
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* @brief USBC Type-C Cable and Connector API used for USBC drivers
|
* @brief USB Type-C Cable and Connector API used for USB-C drivers
|
||||||
*
|
*
|
||||||
* The information in this file was taken from the USB Type-C
|
* The information in this file was taken from the USB Type-C
|
||||||
* Cable and Connector Specification Release 2.1
|
* Cable and Connector Specification Release 2.1
|
Loading…
Reference in a new issue