dvb-usb-i2c.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // SPDX-License-Identifier: GPL-2.0
  2. /* dvb-usb-i2c.c is part of the DVB USB library.
  3. *
  4. * Copyright (C) 2004-6 Patrick Boettcher (patrick.boettcher@posteo.de)
  5. * see dvb-usb-init.c for copyright information.
  6. *
  7. * This file contains functions for (de-)initializing an I2C adapter.
  8. */
  9. #include "dvb-usb-common.h"
  10. int dvb_usb_i2c_init(struct dvb_usb_device *d)
  11. {
  12. int ret = 0;
  13. if (!(d->props.caps & DVB_USB_IS_AN_I2C_ADAPTER))
  14. return 0;
  15. if (d->props.i2c_algo == NULL) {
  16. err("no i2c algorithm specified");
  17. return -EINVAL;
  18. }
  19. strlcpy(d->i2c_adap.name, d->desc->name, sizeof(d->i2c_adap.name));
  20. d->i2c_adap.algo = d->props.i2c_algo;
  21. d->i2c_adap.algo_data = NULL;
  22. d->i2c_adap.dev.parent = &d->udev->dev;
  23. i2c_set_adapdata(&d->i2c_adap, d);
  24. if ((ret = i2c_add_adapter(&d->i2c_adap)) < 0)
  25. err("could not add i2c adapter");
  26. d->state |= DVB_USB_STATE_I2C;
  27. return ret;
  28. }
  29. int dvb_usb_i2c_exit(struct dvb_usb_device *d)
  30. {
  31. if (d->state & DVB_USB_STATE_I2C)
  32. i2c_del_adapter(&d->i2c_adap);
  33. d->state &= ~DVB_USB_STATE_I2C;
  34. return 0;
  35. }