From: <woojung....@microchip.com> Date: Fri, 2 Dec 2016 23:04:13 +0000
> From: Woojung Huh <woojung....@microchip.com> > > Add functions to unregister phy fixup for modules. > > phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask) > Unregister phy fixup matches bus_id, phy_uid and phy_uid_mask > from phy_fixup_list. > Return 0 when find matched one and remove from the list. > Return -ENODEV when fail to find it on the list. > > phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask) > Unregister phy fixup from phy_fixup_list. > Use it for fixup registered by phy_register_fixup_for_uid() > Return 0 when find matched one and remove from the list. > Return -ENODEV when fail to find it on the list. > > phy_unregister_fixup_for_id(const char *bus_id) > Unregister phy fixup from phy_fixup_list. > Use it for fixup registered by phy_register_fixup_for_id() > Return 0 when find matched one and remove from the list. > Return -ENODEV when fail to find it on the list. > > Signed-off-by: Woojung Huh <woojung....@microchip.com> Please submit this along with whatever will be the first user(s) of these new interfaces.