vc/amd/fsp/platform_descriptors: drop prefix from PCIe/DDI structs

The picasso_ prefix on the fsp_pcie_descriptor and fsp_ddi_descriptor
structs isn't needed, since this code is picasso-specific, so drop it.

Change-Id: Ia6a0ddb411aa64becc3c23a876f2ea43cb68e028
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/42252
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Held
2020-06-10 19:05:45 +02:00
committed by Felix Held
parent 4d58083703
commit ca428c3027
9 changed files with 38 additions and 38 deletions

View File

@ -107,7 +107,7 @@ typedef struct __packed {
uint8_t aux_index;
uint8_t hdp_index;
uint8_t reserved;
} picasso_fsp_ddi_descriptor;
} fsp_ddi_descriptor;
/* Picasso PCIe Descriptor: used for assigning lanes, bifurcation and other settings */
typedef struct __packed {
@ -137,6 +137,6 @@ typedef struct __packed {
unsigned int channel_type :3;
unsigned int turn_off_unused_lanes :1;
uint8_t reserved[4];
} picasso_fsp_pcie_descriptor;
} fsp_pcie_descriptor;
#endif /* __PI_PICASSO_PLATFORM_DESCRIPTORS_H__ */