Skip to content

Commit

Permalink
staging: declare MODULE_FIRMWARE in various drivers
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Ben Hutchings authored and Greg Kroah-Hartman committed Mar 4, 2010
1 parent 32dbb67 commit 5d929a7
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/staging/comedi/drivers/jr3_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -954,6 +954,8 @@ static int jr3_pci_attach(struct comedi_device *dev,
return result;
}

MODULE_FIRMWARE("comedi/jr3pci.idm");

static int jr3_pci_detach(struct comedi_device *dev)
{
int i;
Expand Down
2 changes: 2 additions & 0 deletions drivers/staging/go7007/go7007-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ static int go7007_load_encoder(struct go7007 *go)
return rv;
}

MODULE_FIRMWARE("go7007fw.bin");

/*
* Boot the encoder and register the I2C adapter if requested. Do the
* minimum initialization necessary, since the board-specific code may
Expand Down
2 changes: 2 additions & 0 deletions drivers/staging/go7007/go7007-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,8 @@ static struct go7007_usb_board board_sensoray_2250 = {
},
};

MODULE_FIRMWARE("go7007tv.bin");

static const struct usb_device_id go7007_usb_id_table[] = {
{
.match_flags = USB_DEVICE_ID_MATCH_DEVICE_AND_VERSION |
Expand Down
1 change: 1 addition & 0 deletions drivers/staging/go7007/saa7134-go7007.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ static struct go7007_board_info board_voyager = {
},
},
};
MODULE_FIRMWARE("go7007tv.bin");

/********************* Driver for GPIO HPI interface *********************/

Expand Down
4 changes: 4 additions & 0 deletions drivers/staging/rtl8192e/r819xE_firmware.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,3 +365,7 @@ bool init_firmware(struct net_device *dev)
rt_status = false;
return rt_status;
}

MODULE_FIRMWARE("RTL8192E/boot.img");
MODULE_FIRMWARE("RTL8192E/main.img");
MODULE_FIRMWARE("RTL8192E/data.img");
1 change: 1 addition & 0 deletions drivers/staging/rtl8192su/r8192S_firmware.c
Original file line number Diff line number Diff line change
Expand Up @@ -538,3 +538,4 @@ bool FirmwareDownload92S(struct net_device *dev)
return rtStatus;
}

MODULE_FIRMWARE("RTL8192SU/rtl8192sfw.bin");
6 changes: 6 additions & 0 deletions drivers/staging/slicoss/slicoss.c
Original file line number Diff line number Diff line change
Expand Up @@ -1866,6 +1866,9 @@ static int slic_card_download_gbrcv(struct adapter *adapter)
return 0;
}

MODULE_FIRMWARE("slicoss/oasisrcvucode.sys");
MODULE_FIRMWARE("slicoss/gbrcvucode.sys");

static int slic_card_download(struct adapter *adapter)
{
const struct firmware *fw;
Expand Down Expand Up @@ -1977,6 +1980,9 @@ static int slic_card_download(struct adapter *adapter)
return STATUS_SUCCESS;
}

MODULE_FIRMWARE("slicoss/oasisdownload.sys");
MODULE_FIRMWARE("slicoss/gbdownload.sys");

static void slic_adapter_set_hwaddr(struct adapter *adapter)
{
struct sliccard *card = adapter->card;
Expand Down
1 change: 1 addition & 0 deletions drivers/staging/wlan-ng/prism2fw.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
/* Local Constants */

#define PRISM2_USB_FWFILE "prism2_ru.fw"
MODULE_FIRMWARE(PRISM2_USB_FWFILE);

#define S3DATA_MAX 5000
#define S3PLUG_MAX 200
Expand Down

0 comments on commit 5d929a7

Please sign in to comment.