mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
rockchip: mkimage: make RC4 key const
This is read-only data, so mark it as such. Signed-off-by: John Keeping <john@metanate.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@vrull.eu> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
93a6e60e49
commit
2c89929101
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ struct spl_params {
|
|||
|
||||
static struct spl_params spl_params = { 0 };
|
||||
|
||||
static unsigned char rc4_key[16] = {
|
||||
static const unsigned char rc4_key[16] = {
|
||||
124, 78, 3, 4, 85, 5, 9, 7,
|
||||
45, 44, 123, 56, 23, 13, 23, 17
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue