1302a6e34a144a9f3441ae92d7ecce9768b00666
[oweals/u-boot.git] / arch / x86 / lib / lpc-uclass.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2015 Google, Inc
4  * Written by Simon Glass <sjg@chromium.org>
5  */
6
7 #include <common.h>
8 #include <dm.h>
9
10 UCLASS_DRIVER(lpc) = {
11         .id             = UCLASS_LPC,
12         .name           = "lpc",
13 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
14         .post_bind      = dm_scan_fdt_dev,
15 #endif
16 };