diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-05-31 18:05:45 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-06-02 12:16:15 +0300 |
commit | de646852cdadf7da2267e06297f7f6fe22dfb899 (patch) | |
tree | f32ffb44b18d8267d46a7304f94360f08cf4f908 /drivers/media/common/ttpci-eeprom.h | |
parent | 80c1c54a2aa3c5177f73fc5d505668df56fb28b6 (diff) | |
download | linux-de646852cdadf7da2267e06297f7f6fe22dfb899.tar.xz |
media: move ttpci-eeprom to common
The ttpci-eeprom is actually an independent driver that
doesn't depend on the stuff under drivers/media/pci/ttpci/.
Also, it is used by an USB driver (pctv452e).
So, move it to the common directory.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/common/ttpci-eeprom.h')
-rw-r--r-- | drivers/media/common/ttpci-eeprom.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/media/common/ttpci-eeprom.h b/drivers/media/common/ttpci-eeprom.h new file mode 100644 index 000000000000..ee741867ba47 --- /dev/null +++ b/drivers/media/common/ttpci-eeprom.h @@ -0,0 +1,22 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + Retrieve encoded MAC address from ATMEL ttpci_eeprom serial 2-wire EEPROM, + decode it and store it in associated adapter net device + + Robert Schlabbach GMX + Michael Glaum KVH Industries + Holger Waechtler Convergence + + +*/ + +#ifndef __TTPCI_EEPROM_H__ +#define __TTPCI_EEPROM_H__ + +#include <linux/types.h> +#include <linux/i2c.h> + +extern int ttpci_eeprom_decode_mac(u8 *decodedMAC, u8 *encodedMAC); +extern int ttpci_eeprom_parse_mac(struct i2c_adapter *adapter, u8 *propsed_mac); + +#endif |