blob: f0d36bd05956d0c044524f45c22116489cd9a87f [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Kyösti Mälkki3855c012019-03-03 08:45:19 +02002
3#ifndef __DEVICE_PNP_TYPE_H__
4#define __DEVICE_PNP_TYPE_H__
5
6#include <stdint.h>
7
8typedef u32 pnp_devfn_t;
9
10#define PNP_DEV(PORT, FUNC) (((PORT) << 8) | (FUNC))
11
Kyösti Mälkki0f639752019-09-27 12:01:15 +030012#if defined(__SIMPLE_DEVICE__)
13#define ENV_PNP_SIMPLE_DEVICE 1
14#else
15#define ENV_PNP_SIMPLE_DEVICE 0
16#endif
17
Kyösti Mälkki3855c012019-03-03 08:45:19 +020018#endif /* __DEVICE_PNP_TYPE_H__ */