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