leds: pca963x: use struct led_init_data when registering
authorMarek Behún <marek.behun@nic.cz>
Sun, 20 Sep 2020 00:25:00 +0000 (02:25 +0200)
committerPavel Machek <pavel@ucw.cz>
Wed, 30 Sep 2020 17:15:42 +0000 (19:15 +0200)
commit564ead1280d7590f0015d8225637d546e9fa94eb
tree6605c291813225e42e3613d518f562f3c197443a
parent85fc8efe85d405b80904f73e4e23184a84283753
leds: pca963x: use struct led_init_data when registering

By using struct led_init_data when registering we do not need to parse
`label` DT property. Moreover `label` is deprecated and if it is not
present but `color` and `function` are, LED core will compose a name
from these properties instead.

Previously if the `label` DT property was not present, the code composed
name for the LED in the form
  "pca963x:%d:%.2x:%u"
For backwards compatibility we therefore set init_data->default_label
to this value so that the LED will not get a different name if `label`
property is not present, nor are `color` and `function`.

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Cc: Peter Meerwald <p.meerwald@bct-electronic.com>
Cc: Ricardo Ribalda <ribalda@kernel.org>
Cc: Zahari Petkov <zahari@balena.io>
Signed-off-by: Pavel Machek <pavel@ucw.cz>
drivers/leds/leds-pca963x.c