Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.19-rc5 12 lines 445 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __XHCI_RZG3E_H 3#define __XHCI_RZG3E_H 4 5#define RZG3E_USB3_HOST_INTEN 0x1044 /* Interrupt Enable */ 6#define RZG3E_USB3_HOST_U3P0PIPESC(x) (0x10c0 + (x) * 4) /* PIPE Status and Control Register */ 7 8#define RZG3E_USB3_HOST_INTEN_XHC BIT(0) 9#define RZG3E_USB3_HOST_INTEN_HSE BIT(2) 10#define RZG3E_USB3_HOST_INTEN_ENA (RZG3E_USB3_HOST_INTEN_XHC | RZG3E_USB3_HOST_INTEN_HSE) 11 12#endif /* __XHCI_RZG3E_H */