i2c-emul-uclass.c 211 B

12345678910111213
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 2014 Google, Inc
  4. */
  5. #include <common.h>
  6. #include <dm.h>
  7. #include <i2c.h>
  8. UCLASS_DRIVER(i2c_emul) = {
  9. .id = UCLASS_I2C_EMUL,
  10. .name = "i2c_emul",
  11. };