Message ID | 1418878635-18960-3-git-send-email-eliot@blennerhassett.gen.nz (mailing list archive) |
---|---|
State | Accepted |
Commit | fd112f1cf6e10da96ccef9b22c1877114f4e4aad |
Headers | show |
Hi Takashi, there is a corresponding update to alsa-firmware/asihpi to go with the new HPI version. You can download the new firmware here (or would you prefer a binary patch generated from the git repo?) https://drive.google.com/open?id=0B8ccScr8Ew74LVVpYnNlZlc0ZUE&authuser=0 If possible can you remove dsp2400.bin from the repo, it is not used by any plug-in adapter (it is meant for a networked device, and got into alsa-firmware by mistake) Contents of download: asihpi_firmware.7z Date Time Attr Size Compressed Name ------------------- ----- ------------ ------------ --------------- 2014-10-04 02:32:40 ....A 186764 1564580 dsp5000.bin 2014-12-04 03:33:21 ....A 853340 dsp6200.bin 2014-12-04 03:27:52 ....A 59388 dsp6205.bin 2014-12-04 03:35:44 ....A 646672 dsp6400.bin 2014-12-04 03:38:11 ....A 649636 dsp6600.bin 2014-12-04 03:41:05 ....A 1565436 dsp8900.bin 2014-10-04 02:41:20 ....A 365476 144838 dsp8700.bin ------------------- ----- ------------ ------------ ---------------- 4326712 1709418 7 files, 0 folders -- Eliot P.S: I haven't forgotten your request to replace tasklet in asihpi
At Thu, 18 Dec 2014 18:03:37 +1300, Eliot Blennerhassett wrote: > > Hi Takashi, > > there is a corresponding update to alsa-firmware/asihpi > to go with the new HPI version. > > You can download the new firmware here (or would you prefer a binary > patch generated from the git repo?) > > https://drive.google.com/open?id=0B8ccScr8Ew74LVVpYnNlZlc0ZUE&authuser=0 > > If possible can you remove dsp2400.bin from the repo, it is not used by > any plug-in adapter (it is meant for a networked device, and got into > alsa-firmware by mistake) Done. Takashi > > Contents of download: > > asihpi_firmware.7z > Date Time Attr Size Compressed Name > ------------------- ----- ------------ ------------ --------------- > 2014-10-04 02:32:40 ....A 186764 1564580 dsp5000.bin > 2014-12-04 03:33:21 ....A 853340 dsp6200.bin > 2014-12-04 03:27:52 ....A 59388 dsp6205.bin > 2014-12-04 03:35:44 ....A 646672 dsp6400.bin > 2014-12-04 03:38:11 ....A 649636 dsp6600.bin > 2014-12-04 03:41:05 ....A 1565436 dsp8900.bin > 2014-10-04 02:41:20 ....A 365476 144838 dsp8700.bin > ------------------- ----- ------------ ------------ ---------------- > 4326712 1709418 7 files, 0 folders > > -- > Eliot > P.S: I haven't forgotten your request to replace tasklet in asihpi >
diff --git a/sound/pci/asihpi/hpi_version.h b/sound/pci/asihpi/hpi_version.h index e9146e5..6623ab1 100644 --- a/sound/pci/asihpi/hpi_version.h +++ b/sound/pci/asihpi/hpi_version.h @@ -11,13 +11,13 @@ Production releases have even minor version. /* Use single digits for versions less that 10 to avoid octal. */ /* *** HPI_VER is the only edit required to update version *** */ /** HPI version */ -#define HPI_VER HPI_VERSION_CONSTRUCTOR(4, 10, 1) +#define HPI_VER HPI_VERSION_CONSTRUCTOR(4, 14, 3) /** HPI version string in dotted decimal format */ -#define HPI_VER_STRING "4.10.01" +#define HPI_VER_STRING "4.14.03" /** Library version as documented in hpi-api-versions.txt */ -#define HPI_LIB_VER HPI_VERSION_CONSTRUCTOR(10, 2, 0) +#define HPI_LIB_VER HPI_VERSION_CONSTRUCTOR(10, 4, 0) /** Construct hpi version number from major, minor, release numbers */ #define HPI_VERSION_CONSTRUCTOR(maj, min, r) ((maj << 16) + (min << 8) + r)