soc/intel/cannonlake: Remove const for spd_smbus_address
Remove const define for spd_smbus_address, the value can be updated depends on platform configuration. TEST=Build and Run on Whiskey Lake rvp platform. Found-by: Converity Scan #1395725 Change-Id: Ib933ed872e9f85087bb3cd76a1f1e29cca75cd54 Signed-off-by: Lijian Zhao <lijian.zhao@intel.com> Reviewed-on: https://review.coreboot.org/28664 Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
985a4fc96c
commit
63da206146
|
@ -46,7 +46,7 @@ struct spd_info {
|
|||
int spd_index;
|
||||
struct spd_by_pointer spd_data_ptr_info;
|
||||
} spd_spec;
|
||||
const uint8_t spd_smbus_address[4];
|
||||
uint8_t spd_smbus_address[4];
|
||||
};
|
||||
|
||||
/* Board-specific memory dq mapping information */
|
||||
|
|
Loading…
Reference in New Issue