northbridge-uclass.c 272 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2015 Google, Inc
  3. * Written by Simon Glass <sjg@chromium.org>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <dm.h>
  9. #include <dm/root.h>
  10. UCLASS_DRIVER(northbridge) = {
  11. .id = UCLASS_NORTHBRIDGE,
  12. .name = "northbridge",
  13. };