]> Git Repo - u-boot.git/blob - include/dt-bindings/pci/pci.h
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sh
[u-boot.git] / include / dt-bindings / pci / pci.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * This header provides common constants for PCI bindings.
4  */
5
6 #ifndef _DT_BINDINGS_PCI_PCI_H
7 #define _DT_BINDINGS_PCI_PCI_H
8
9 /* Encode a vendor and device ID into a single cell */
10 #define PCI_VENDEV(v, d)        (((v) << 16) | (d))
11
12 #endif /* _DT_BINDINGS_PCI_PCI_H */
This page took 0.029513 seconds and 4 git commands to generate.