Skip to content

Commit

Permalink
[media] af9035: declare MODULE_FIRMWARE
Browse files Browse the repository at this point in the history
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Sep 27, 2012
1 parent 0fe688f commit 4395e4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/media/usb/dvb-usb-v2/af9035.c
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ static const struct dvb_usb_device_properties af9035_props = {
.generic_bulk_ctrl_endpoint_response = 0x81,

.identify_state = af9035_identify_state,
.firmware = "dvb-usb-af9035-02.fw",
.firmware = AF9035_FIRMWARE_AF9035,
.download_firmware = af9035_download_firmware,

.i2c_algo = &af9035_i2c_algo,
Expand Down Expand Up @@ -1063,7 +1063,7 @@ static const struct dvb_usb_device_properties it9135_props = {
.generic_bulk_ctrl_endpoint_response = 0x81,

.identify_state = af9035_identify_state,
.firmware = "dvb-usb-it9135-01.fw",
.firmware = AF9035_FIRMWARE_IT9135,
.download_firmware = af9035_download_firmware_it9135,

.i2c_algo = &af9035_i2c_algo,
Expand Down Expand Up @@ -1127,3 +1127,5 @@ module_usb_driver(af9035_usb_driver);
MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
MODULE_DESCRIPTION("Afatech AF9035 driver");
MODULE_LICENSE("GPL");
MODULE_FIRMWARE(AF9035_FIRMWARE_AF9035);
MODULE_FIRMWARE(AF9035_FIRMWARE_IT9135);
3 changes: 3 additions & 0 deletions drivers/media/usb/dvb-usb-v2/af9035.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ u32 clock_lut_it9135[] = {
22000000, /* 22.00 MHz */
};

#define AF9035_FIRMWARE_AF9035 "dvb-usb-af9035-02.fw"
#define AF9035_FIRMWARE_IT9135 "dvb-usb-it9135-01.fw"

/* EEPROM locations */
#define EEPROM_IR_MODE 0x430d
#define EEPROM_DUAL_MODE 0x4326
Expand Down

0 comments on commit 4395e4b

Please sign in to comment.