blob: dc9b8e5a253b05e8db1b71080d26961da3b9a10f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stephen Warren927c1fa2015-03-24 20:07:33 -06002/*
3 * Copyright 2015 Stephen Warren
Stephen Warren927c1fa2015-03-24 20:07:33 -06004 */
5
6#ifndef _BUS_ADDR_H
7#define _BUS_ADDR_H
8
9#ifdef CONFIG_PHYS_TO_BUS
10unsigned long phys_to_bus(unsigned long phys);
11unsigned long bus_to_phys(unsigned long bus);
12#else
13static inline unsigned long phys_to_bus(unsigned long phys)
14{
15 return phys;
16}
17
18static inline unsigned long bus_to_phys(unsigned long bus)
19{
20 return bus;
21}
22#endif
23
24#endif