blob: eb033e6b3f6312fc0ea82a054af9ac57383941b8 [file] [log] [blame]
Simon Glassa274e9c2015-03-26 09:29:28 -06001/*
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 Glassa274e9c2015-03-26 09:29:28 -060010
Simon Glass8b097912015-07-31 09:31:31 -060011DECLARE_GLOBAL_DATA_PTR;
12
Simon Glassa274e9c2015-03-26 09:29:28 -060013UCLASS_DRIVER(lpc) = {
14 .id = UCLASS_LPC,
15 .name = "lpc",
Simon Glass91195482016-07-05 17:10:10 -060016 .post_bind = dm_scan_fdt_dev,
Simon Glassa274e9c2015-03-26 09:29:28 -060017};