Re: [PATCH] phy: ulpi_phy: Add const qualifier to ops

2015-07-15 Thread Kishon Vijay Abraham I
Hi Axel, On Wednesday 15 July 2015 12:40 PM, Axel Lin wrote: > 2015-06-05 8:27 GMT+08:00 Axel Lin : >> The ops is never changed in ulpi_phy_create(), so make it const. > > Hi Kishon, > > Would you pick up this patch? yes.. I'll take once I start queuing the patches. Thanks Kishon -- To unsubsc

Re: [PATCH] phy: ulpi_phy: Add const qualifier to ops

2015-07-15 Thread Axel Lin
2015-06-05 8:27 GMT+08:00 Axel Lin : > The ops is never changed in ulpi_phy_create(), so make it const. Hi Kishon, Would you pick up this patch? Without this patch, passing a const struct phy_ops* to ulip_phy_create will have compiler warning. It should be fine to pass a const struct phy_ops* to

[PATCH] phy: ulpi_phy: Add const qualifier to ops

2015-06-04 Thread Axel Lin
The ops is never changed in ulpi_phy_create(), so make it const. Signed-off-by: Axel Lin --- drivers/phy/ulpi_phy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/phy/ulpi_phy.h b/drivers/phy/ulpi_phy.h index ac49fb6..f2ebe49 100644 --- a/drivers/phy/ulpi_phy.h +++ b