mirror of https://github.com/thesofproject/sof.git
Remove unused declaration of global platform specific manifests
Such a global variables does not exists, so should not be declared.
It has been deprecated since:
2965908
(manifest: Remove -m option)
Signed-off-by: Trzcinski, Karol <karol.trzcinski@intel.com>
This commit is contained in:
parent
3b4b1429b0
commit
8753a9e162
|
@ -127,8 +127,6 @@ struct fw_image_manifest_v2_5 {
|
||||||
struct sof_man_fw_desc desc; /* at offset MAN_DESC_OFFSET */
|
struct sof_man_fw_desc desc; /* at offset MAN_DESC_OFFSET */
|
||||||
} __attribute__((packed));
|
} __attribute__((packed));
|
||||||
|
|
||||||
extern struct fw_image_manifest_v2_5 tgl_manifest;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Firmware manifest header V1.8 used on APL onwards
|
* Firmware manifest header V1.8 used on APL onwards
|
||||||
*/
|
*/
|
||||||
|
@ -151,9 +149,6 @@ struct fw_image_manifest_v1_8 {
|
||||||
struct sof_man_fw_desc desc; /* at offset MAN_DESC_OFFSET */
|
struct sof_man_fw_desc desc; /* at offset MAN_DESC_OFFSET */
|
||||||
} __attribute__((packed));
|
} __attribute__((packed));
|
||||||
|
|
||||||
extern struct fw_image_manifest_v1_8 apl_manifest;
|
|
||||||
extern struct fw_image_manifest_v1_8 cnl_manifest;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Firmware manifest header V1.5 used on SKL and KBL
|
* Firmware manifest header V1.5 used on SKL and KBL
|
||||||
*/
|
*/
|
||||||
|
@ -166,14 +161,6 @@ struct fw_image_manifest_v1_5_sue {
|
||||||
struct sof_man_fw_desc desc;
|
struct sof_man_fw_desc desc;
|
||||||
} __attribute__((packed));
|
} __attribute__((packed));
|
||||||
|
|
||||||
/*
|
|
||||||
* TODO: verify if we need platform specific manifest, or just
|
|
||||||
* define manifest_v1_5 and manifest_v1_8.
|
|
||||||
*/
|
|
||||||
extern struct fw_image_manifest_v1_5 skl_manifest;
|
|
||||||
extern struct fw_image_manifest_v1_5 kbl_manifest;
|
|
||||||
extern struct fw_image_manifest_v1_5_sue sue_manifest;
|
|
||||||
|
|
||||||
struct image;
|
struct image;
|
||||||
int simple_write_firmware(struct image *image);
|
int simple_write_firmware(struct image *image);
|
||||||
int man_write_fw_v1_5(struct image *image);
|
int man_write_fw_v1_5(struct image *image);
|
||||||
|
|
Loading…
Reference in New Issue