sigmadsp.h 475 B

12345678910111213141516171819202122
  1. /*
  2. * Load firmware files from Analog Devices SigmaStudio
  3. *
  4. * Copyright 2009-2011 Analog Devices Inc.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #ifndef __SIGMA_FIRMWARE_H__
  9. #define __SIGMA_FIRMWARE_H__
  10. #include <linux/device.h>
  11. #include <linux/regmap.h>
  12. struct i2c_client;
  13. extern int process_sigma_firmware(struct i2c_client *client, const char *name);
  14. extern int process_sigma_firmware_regmap(struct device *dev,
  15. struct regmap *regmap, const char *name);
  16. #endif