diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2014-08-16 05:52:05 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2014-08-16 06:00:36 -0400 |
commit | 528715a672a53156d7cb1382c344954d4d59cfc6 (patch) | |
tree | 188251d2ff8ae495532d25c57adc9ba286f7e5e0 /lib/rbcodec/codecs | |
parent | 6ed00870abd566d7267d2436c2693f5a281cda2f (diff) |
Fix warnings from 6ed0087
Forgot to (void) an unused parameter when priorityless.
usb-drv-rl27xx.c was using a compound init to initialize a semaphore
but the structure changed so that it is no longer correct. Use
designated initializers to avoid having to complete all fields.
Forgot to break compatibility on all plugins and codecs since the
kernel objects are now different. Take care of that too and do the
sort thing.
Change-Id: Ie2ab8da152d40be0c69dc573ced8d697d94b0674
Diffstat (limited to 'lib/rbcodec/codecs')
-rw-r--r-- | lib/rbcodec/codecs/codecs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbcodec/codecs/codecs.h b/lib/rbcodec/codecs/codecs.h index 4ac5d283dd..afe33f0a5c 100644 --- a/lib/rbcodec/codecs/codecs.h +++ b/lib/rbcodec/codecs/codecs.h @@ -72,12 +72,12 @@ #define CODEC_ENC_MAGIC 0x52454E43 /* RENC */ /* increase this every time the api struct changes */ -#define CODEC_API_VERSION 46 +#define CODEC_API_VERSION 47 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any new function which are "waiting" at the end of the function table) */ -#define CODEC_MIN_API_VERSION 46 +#define CODEC_MIN_API_VERSION 47 /* reasons for calling codec main entrypoint */ enum codec_entry_call_reason { |