xref: /linux/drivers/i3c/master/mipi-i3c-hci/ext_caps.h (revision 3d0fe49454652117522f60bfbefb978ba0e5300b)
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 /*
3  * Copyright (c) 2020, MIPI Alliance, Inc.
4  *
5  * Author: Nicolas Pitre <npitre@baylibre.com>
6  *
7  * Extended Capability Definitions
8  */
9 
10 #ifndef EXTCAPS_H
11 #define EXTCAPS_H
12 
13 /* MIPI vendor IDs */
14 #define MIPI_VENDOR_NXP			0x11b
15 
16 
17 int i3c_hci_parse_ext_caps(struct i3c_hci *hci);
18 
19 #endif
20