]> Git Repo - u-boot.git/blob - arch/x86/lib/lpc-uclass.c
Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"
[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 <[email protected]>
5  */
6
7 #include <dm.h>
8
9 UCLASS_DRIVER(lpc) = {
10         .id             = UCLASS_LPC,
11         .name           = "lpc",
12 #if CONFIG_IS_ENABLED(OF_REAL)
13         .post_bind      = dm_scan_fdt_dev,
14 #endif
15 };
This page took 0.026407 seconds and 4 git commands to generate.