blob: 99a609157b2e4ab5772f8ebccc6edf9a44ad9ec1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Load firmware files from Analog Devices SigmaStudio
*
* Copyright 2009-2011 Analog Devices Inc.
*
* Licensed under the GPL-2 or later.
*/
#ifndef __SIGMA_FIRMWARE_H__
#define __SIGMA_FIRMWARE_H__
struct i2c_client;
extern int process_sigma_firmware(struct i2c_client *client, const char *name);
#endif
|