xref: /openbmc/u-boot/arch/x86/lib/northbridge-uclass.c (revision 07d538d2814fa03be243c71879372f4263030b78)
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 #include <dm/root.h>
10 
11 UCLASS_DRIVER(northbridge) = {
12 	.id		= UCLASS_NORTHBRIDGE,
13 	.name		= "northbridge",
14 };
15