mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
phy: marvell: Cannot test unsigned field to be negative
In comphy_cp110_init_serdes_map in comphy_cp110.c there are two fields in cfg, comphy_lanes_count and comphy_mux_bitcount, which are fetched from the FDT blob with fdtdec_get_int which returns an int. These two fields are then tested for being negative. However the fields are declared as unsigned so those tests must always fail. Change the declaration of those fields to be int instead of u32 and the code will work as expected. This issue was found by Smatch. Signed-off-by: Andrew Goodbody <andrew.goodbody@linaro.org> Reviewed-by: Stefan Roese <stefan.roese@mailbox.org>
This commit is contained in:
committed by
Jerome Forissier
parent
a75c8a4b88
commit
2e9155cb9f
@@ -47,8 +47,8 @@ struct chip_serdes_phy_config {
|
||||
int (*rx_training)(struct chip_serdes_phy_config *, u32);
|
||||
void __iomem *comphy_base_addr;
|
||||
void __iomem *hpipe3_base_addr;
|
||||
u32 comphy_lanes_count;
|
||||
u32 comphy_mux_bitcount;
|
||||
int comphy_lanes_count;
|
||||
int comphy_mux_bitcount;
|
||||
const fdt32_t *comphy_mux_lane_order;
|
||||
u32 cp_index;
|
||||
struct comphy_map comphy_map_data[MAX_LANE_OPTIONS];
|
||||
|
||||
Reference in New Issue
Block a user