i2c-emul-uclass.c 214 B

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