mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-18 02:40:08 +00:00
regulator: add missing inline and static constexpr
The exynos5/consts header defined global symbols. If included by multiple compilation units, this lead to multiple-definition errors. Ref #2206
This commit is contained in:
parent
a9eecc1a2d
commit
8c1e2f0555
@ -38,7 +38,7 @@ namespace Regulator {
|
|||||||
const char * name;
|
const char * name;
|
||||||
};
|
};
|
||||||
|
|
||||||
Regulator_name names[] = {
|
static constexpr Regulator_name names[] = {
|
||||||
{ CLK_CPU, "clock-cpu" },
|
{ CLK_CPU, "clock-cpu" },
|
||||||
{ CLK_SATA, "clock-sata" },
|
{ CLK_SATA, "clock-sata" },
|
||||||
{ CLK_USB30, "clock-usb3.0" },
|
{ CLK_USB30, "clock-usb3.0" },
|
||||||
@ -51,7 +51,7 @@ namespace Regulator {
|
|||||||
{ PWR_HDMI, "power-hdmi"},
|
{ PWR_HDMI, "power-hdmi"},
|
||||||
};
|
};
|
||||||
|
|
||||||
Regulator_id regulator_id_by_name(const char * name)
|
inline Regulator_id regulator_id_by_name(const char * name)
|
||||||
{
|
{
|
||||||
for (unsigned i = 0; i < sizeof(names)/sizeof(names[0]); i++)
|
for (unsigned i = 0; i < sizeof(names)/sizeof(names[0]); i++)
|
||||||
if (Genode::strcmp(names[i].name, name) == 0)
|
if (Genode::strcmp(names[i].name, name) == 0)
|
||||||
@ -59,7 +59,7 @@ namespace Regulator {
|
|||||||
return INVALID;
|
return INVALID;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char * regulator_name_by_id(Regulator_id id) {
|
inline const char * regulator_name_by_id(Regulator_id id) {
|
||||||
return (id < sizeof(names)/sizeof(names[0])) ? names[id].name : 0; }
|
return (id < sizeof(names)/sizeof(names[0])) ? names[id].name : 0; }
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user