device: Move find_dev_path() to device_const.c

Change-Id: I8a27aa7157b5706623272ba9354ed8dff9b8184f
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/26446
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Kyösti Mälkki
2018-05-21 01:52:10 +03:00
parent f6a4344c5b
commit 2df1c124c4
4 changed files with 86 additions and 82 deletions

View File

@@ -196,7 +196,9 @@ bool dev_is_active_bridge(struct device *dev);
void run_bios(struct device *dev, unsigned long addr);
/* Helper functions */
struct device *find_dev_path(struct bus *parent, struct device_path *path);
DEVTREE_CONST struct device *find_dev_path(
const struct bus *parent,
const struct device_path *path);
struct device *alloc_find_dev(struct bus *parent, struct device_path *path);
struct device *dev_find_device(u16 vendor, u16 device, struct device *from);
struct device *dev_find_class(unsigned int class, struct device *from);

View File

@@ -125,7 +125,6 @@ struct device_path {
#define DEVICE_PATH_MAX 30
#define BUS_PATH_MAX (DEVICE_PATH_MAX+10)
extern int path_eq(struct device_path *path1, struct device_path *path2);
extern const char *dev_path_name(enum device_path_type type);
#endif /* DEVICE_PATH_H */