mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-19 05:31:31 +02:00
Remove <common.h> from all x86 architecture files and when needed add missing include files directly. Signed-off-by: Tom Rini <trini@konsulko.com>
14 lines
249 B
C
14 lines
249 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2015 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <dm.h>
|
|
#include <dm/root.h>
|
|
|
|
UCLASS_DRIVER(northbridge) = {
|
|
.id = UCLASS_NORTHBRIDGE,
|
|
.name = "northbridge",
|
|
};
|