Gitiles
Code Review
Sign In
gerrit.devboardsforandroid.linaro.org
/
platform
/
external
/
u-boot
/
d024236e5a31a2b4b82cbcc98b31b8170fc88d28
/
.
/
arch
/
x86
/
lib
/
lpc-uclass.c
blob: 37b0c216c2c9aea9b8b5cb1e317934631eb71bcd [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2015 Google, Inc
* Written by Simon Glass <sjg@chromium.org>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include
<common.h>
#include
<dm.h>
UCLASS_DRIVER
(
lpc
)
=
{
.
id
=
UCLASS_LPC
,
.
name
=
"lpc"
,
.
post_bind
=
dm_scan_fdt_dev
,
};