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 4d8e74ad4585672489da6145b3328d415f50db82 15 lines 400 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef INCLUDE_PLATFORM_DATA_MIPI_I3C_HCI_H 3#define INCLUDE_PLATFORM_DATA_MIPI_I3C_HCI_H 4 5#include <linux/compiler_types.h> 6 7/** 8 * struct mipi_i3c_hci_platform_data - Platform-dependent data for mipi_i3c_hci 9 * @base_regs: Register set base address (to support multi-bus instances) 10 */ 11struct mipi_i3c_hci_platform_data { 12 void __iomem *base_regs; 13}; 14 15#endif