From: Robert Tivy Date: Fri, 17 Oct 2014 22:50:41 +0000 (-0700) Subject: Change fw_rsc_intmem to match Linux 3.14 X-Git-Tag: 3.30.01.10_eng~1 X-Git-Url: https://git.ti.com/gitweb?p=ipc%2Fipcdev.git;a=commitdiff_plain;h=691592a6b9e5cf11b2696eee0bba37cc9d68d76b Change fw_rsc_intmem to match Linux 3.14 This struct was changed for Linux 3.14, so we need to match that new one because Ipc 3.30 uses Linux 3.14. Later we should introduce a construct that will allow the user to specify the older struct usage. --- diff --git a/packages/ti/ipc/remoteproc/rsc_types.h b/packages/ti/ipc/remoteproc/rsc_types.h index 7f6704b..35ad4e6 100644 --- a/packages/ti/ipc/remoteproc/rsc_types.h +++ b/packages/ti/ipc/remoteproc/rsc_types.h @@ -93,10 +93,11 @@ struct fw_rsc_carveout { struct fw_rsc_intmem { UInt32 type; + UInt32 version; UInt32 da; UInt32 pa; UInt32 len; - UInt32 reserved[2]; + UInt32 reserved; Char name[32]; };