diff options
author | Lior Dotan <liodot@gmail.com> | 2009-01-30 09:51:49 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:53:05 -0700 |
commit | a390c47939b0d418fc2c4cf1f360795949228de5 (patch) | |
tree | a4685b5a8cd476a2252895805e9cb4295f95594c /drivers | |
parent | 9d938335fdc60313b54688091840f6fd44d83db5 (diff) |
Staging: slicoss: add binary firmware to firmware directory
Adds the firmware to the firmware directory in ihex format so it can be
installed when doing make firmware_install.
Also update the firmware location in the driver code so it can locate
the files in the right place.
This should conclude the move to request_firmware().
Signed-off-by: Lior Dotan <liodot@gmail.com>
Cc: Christopher Harrer <charrer@alacritech.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/slicoss/slicoss.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/slicoss/slicoss.c b/drivers/staging/slicoss/slicoss.c index 7cdf2fadb2d..7e0647c404a 100644 --- a/drivers/staging/slicoss/slicoss.c +++ b/drivers/staging/slicoss/slicoss.c @@ -2189,10 +2189,10 @@ static int slic_card_download_gbrcv(struct adapter *adapter) switch (adapter->devid) { case SLIC_2GB_DEVICE_ID: - file = "oasisrcvucode.sys"; + file = "slicoss/oasisrcvucode.sys"; break; case SLIC_1GB_DEVICE_ID: - file = "gbrcvucode.sys"; + file = "slicoss/gbrcvucode.sys"; break; default: ASSERT(0); @@ -2270,10 +2270,10 @@ static int slic_card_download(struct adapter *adapter) switch (adapter->devid) { case SLIC_2GB_DEVICE_ID: - file = "oasisdownload.sys"; + file = "slicoss/oasisdownload.sys"; break; case SLIC_1GB_DEVICE_ID: - file = "gbdownload.sys"; + file = "slicoss/gbdownload.sys"; break; default: ASSERT(0); |