Commit 509a7147446100d85f4bfd9dd330eb6c9428f3d3
Committed by
Takashi Iwai
1 parent
fe0aa88eec
Exists in
master
and in
6 other branches
ALSA: asihpi - HPI version 4.08
HPI Version is used to check for firmware compatibility. This version will accept 4.08.xx released firmware, and will also accept 4.09.xx beta firmware Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Showing 1 changed file with 4 additions and 5 deletions Side-by-side Diff
sound/pci/asihpi/hpi.h
1 | 1 | /****************************************************************************** |
2 | 2 | |
3 | 3 | AudioScience HPI driver |
4 | - Copyright (C) 1997-2010 AudioScience Inc. <support@audioscience.com> | |
4 | + Copyright (C) 1997-2011 AudioScience Inc. <support@audioscience.com> | |
5 | 5 | |
6 | 6 | This program is free software; you can redistribute it and/or modify |
7 | 7 | it under the terms of version 2 of the GNU General Public License as |
8 | 8 | |
... | ... | @@ -42,12 +42,11 @@ |
42 | 42 | #define HPI_VER_MINOR(v) ((int)((v >> 8) & 0xFF)) |
43 | 43 | #define HPI_VER_RELEASE(v) ((int)(v & 0xFF)) |
44 | 44 | |
45 | -/* Use single digits for versions less that 10 to avoid octal. */ | |
46 | -#define HPI_VER HPI_VERSION_CONSTRUCTOR(4L, 6, 0) | |
47 | -#define HPI_VER_STRING "4.06.00" | |
45 | +#define HPI_VER HPI_VERSION_CONSTRUCTOR(4L, 8, 0) | |
46 | +#define HPI_VER_STRING "4.08.00" | |
48 | 47 | |
49 | 48 | /* Library version as documented in hpi-api-versions.txt */ |
50 | -#define HPI_LIB_VER HPI_VERSION_CONSTRUCTOR(9, 0, 0) | |
49 | +#define HPI_LIB_VER HPI_VERSION_CONSTRUCTOR(10, 0, 0) | |
51 | 50 | |
52 | 51 | #include <linux/types.h> |
53 | 52 | #define HPI_BUILD_EXCLUDE_DEPRECATED |