[PATCH 2/2] drivers: usb: musb: Fix comparison between pointer and integer warn

Arnaud Ferraris arnaud.ferraris at collabora.com
Wed Apr 22 15:27:22 CEST 2020


Le 22/04/2020 à 12:53, Marek Vasut a écrit :
> On 4/22/20 12:50 PM, Arnaud Ferraris wrote:
>> diff --git a/drivers/usb/musb-new/ti-musb.c b/drivers/usb/musb-new/ti-musb.c
>> index 4e88652433..0c124a2c5e 100644
>> --- a/drivers/usb/musb-new/ti-musb.c
>> +++ b/drivers/usb/musb-new/ti-musb.c
>> @@ -91,7 +91,7 @@ static int ti_musb_ofdata_to_platdata(struct udevice *dev)
>>  	phys = fdtdec_lookup_phandle(fdt, node, "phys");
>>  	ctrl_mod = fdtdec_lookup_phandle(fdt, phys, "ti,ctrl_mod");
>>  	platdata->ctrl_mod_base = (void *)fdtdec_get_addr(fdt, ctrl_mod, "reg");
>> -	if (platdata->ctrl_mod_base == FDT_ADDR_T_NONE) {
>> +	if (platdata->ctrl_mod_base == (void *)FDT_ADDR_T_NONE) {
>>  		pr_err("MUSB ctrl mod missing\n");
> 
> Is this patching the same code as 1/2 ?
> 

It is indeed. I kept it that way as the original commits were from
different authors and different times, but I can squash those.

Cheers,
Arnaud



More information about the U-Boot mailing list