northbridge-uclass.c 269 B

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