aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/arch/x86/lib/northbridge-uclass.c
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/arch/x86/lib/northbridge-uclass.c')
-rw-r--r--roms/u-boot/arch/x86/lib/northbridge-uclass.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/roms/u-boot/arch/x86/lib/northbridge-uclass.c b/roms/u-boot/arch/x86/lib/northbridge-uclass.c
new file mode 100644
index 000000000..383888724
--- /dev/null
+++ b/roms/u-boot/arch/x86/lib/northbridge-uclass.c
@@ -0,0 +1,14 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (c) 2015 Google, Inc
+ * Written by Simon Glass <sjg@chromium.org>
+ */
+
+#include <common.h>
+#include <dm.h>
+#include <dm/root.h>
+
+UCLASS_DRIVER(northbridge) = {
+ .id = UCLASS_NORTHBRIDGE,
+ .name = "northbridge",
+};