Simon Glass | a274e9c | 2015-03-26 09:29:28 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Google, Inc |
| 3 | * Written by Simon Glass <sjg@chromium.org> |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <dm.h> |
Simon Glass | a274e9c | 2015-03-26 09:29:28 -0600 | [diff] [blame] | 10 | |
Simon Glass | 8b09791 | 2015-07-31 09:31:31 -0600 | [diff] [blame] | 11 | DECLARE_GLOBAL_DATA_PTR; |
| 12 | |
Simon Glass | a274e9c | 2015-03-26 09:29:28 -0600 | [diff] [blame] | 13 | static int lpc_uclass_post_bind(struct udevice *bus) |
| 14 | { |
| 15 | /* |
| 16 | * Scan the device tree for devices |
| 17 | * |
| 18 | * Before relocation, only bind devices marked for pre-relocation |
| 19 | * use. |
| 20 | */ |
Simon Glass | 2e3f1ff | 2016-07-05 17:10:09 -0600 | [diff] [blame^] | 21 | return dm_scan_fdt_dev(bus); |
Simon Glass | a274e9c | 2015-03-26 09:29:28 -0600 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | UCLASS_DRIVER(lpc) = { |
| 25 | .id = UCLASS_LPC, |
| 26 | .name = "lpc", |
| 27 | .post_bind = lpc_uclass_post_bind, |
| 28 | }; |