Message ID | 20191001132333.20146-1-brgl@bgdev.pl (mailing list archive) |
---|---|
Headers | show |
Series | tegra: use regulator_bulk_set_supply_names() | expand |
On Tue, Oct 01, 2019 at 03:23:30PM +0200, Bartosz Golaszewski wrote: > From: Bartosz Golaszewski <bgolaszewski@baylibre.com> > > The regulator_bulk_set_supply_names() helper was merged upstream. Use it > in a couple tegra drivers. > > Bartosz Golaszewski (3): > ahci: tegra: use regulator_bulk_set_supply_names() > phy: tegra: use regulator_bulk_set_supply_names() > usb: host: xhci-tegra: use regulator_bulk_set_supply_names() > > drivers/ata/ahci_tegra.c | 6 +++--- > drivers/phy/tegra/xusb.c | 6 +++--- > drivers/usb/host/xhci-tegra.c | 5 +++-- > 3 files changed, 9 insertions(+), 8 deletions(-) I really don't see the point here. You've got a positive diffstat here, which means all that churn is without benefit. Is there some subsequent work based on this that will actually improve things? Thierry
wt., 1 paź 2019 o 15:38 Thierry Reding <thierry.reding@gmail.com> napisał(a): > > On Tue, Oct 01, 2019 at 03:23:30PM +0200, Bartosz Golaszewski wrote: > > From: Bartosz Golaszewski <bgolaszewski@baylibre.com> > > > > The regulator_bulk_set_supply_names() helper was merged upstream. Use it > > in a couple tegra drivers. > > > > Bartosz Golaszewski (3): > > ahci: tegra: use regulator_bulk_set_supply_names() > > phy: tegra: use regulator_bulk_set_supply_names() > > usb: host: xhci-tegra: use regulator_bulk_set_supply_names() > > > > drivers/ata/ahci_tegra.c | 6 +++--- > > drivers/phy/tegra/xusb.c | 6 +++--- > > drivers/usb/host/xhci-tegra.c | 5 +++-- > > 3 files changed, 9 insertions(+), 8 deletions(-) > > I really don't see the point here. You've got a positive diffstat here, > which means all that churn is without benefit. > A hand-coded for loop is replaced with a single function call. The actual generated code is smaller - I posted bloat-o-meter results last time. The only reason the number of lines of code doesn't really change is because the line is broken due to the function and argument names being too long. > Is there some subsequent work based on this that will actually improve > things? I'd argue that replacing a common operation that's reimplemented explicitly by hand in many places with a helper function is already an improvement. Consolidation is almost always good. That being said, I like your idea about the regulator_get_from_names helper, but it will take more time as we have to cover optional multiple regulators as well. In other words: it's on my TODO list, but in the meantime there's no harm in using this since Mark decided to make it a part of the regulator API anyway. Bart
From: Bartosz Golaszewski <bgolaszewski@baylibre.com> The regulator_bulk_set_supply_names() helper was merged upstream. Use it in a couple tegra drivers. Bartosz Golaszewski (3): ahci: tegra: use regulator_bulk_set_supply_names() phy: tegra: use regulator_bulk_set_supply_names() usb: host: xhci-tegra: use regulator_bulk_set_supply_names() drivers/ata/ahci_tegra.c | 6 +++--- drivers/phy/tegra/xusb.c | 6 +++--- drivers/usb/host/xhci-tegra.c | 5 +++-- 3 files changed, 9 insertions(+), 8 deletions(-)