qcacmn: add 'const' for 'section' in struct TGT_REG_TABLE

To fix the following compilation error:
warning: assignment discards ‘const’
qualifier from pointer target type, at:
reg_table->section = ar6320v2_reg_table
in ol_fw.c.

It's because the register table is a
const array, while reg_table->section does
not point to a const.
So add 'const' for 'section'.

Change-Id: Idfef358817241e73d660d2730b74c2ca88e23af1
CRs-Fixed: 2017786
This commit is contained in:
Yu Wang
2017-03-10 15:19:02 +08:00
committed by Gerrit - the friendly Code Review server
szülő cb5d59b696
commit 9d9fa19d83
3 fájl változott, egészen pontosan 3 új sor hozzáadva és 3 régi sor törölve

Fájl megtekintése

@@ -740,7 +740,7 @@ struct tgt_reg_section {
};
struct tgt_reg_table {
struct tgt_reg_section *section;
const struct tgt_reg_section *section;
uint32_t section_size;
};