diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2022-04-19 13:34:25 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-04-22 17:13:53 +0200 |
commit | 6e67955087e72f1a5f64dd8014c27e1d9317fbb4 (patch) | |
tree | 90e1dcd9633d7fed7e327c66f77adaa3d1b233c6 /include/linux/amba | |
parent | 6c2f421174273de8f83cde4286d1c076d43a2d35 (diff) | |
download | linux-stable-6e67955087e72f1a5f64dd8014c27e1d9317fbb4.tar.gz linux-stable-6e67955087e72f1a5f64dd8014c27e1d9317fbb4.tar.bz2 linux-stable-6e67955087e72f1a5f64dd8014c27e1d9317fbb4.zip |
amba: Use driver_set_override() instead of open-coding
Use a helper to set driver_override to reduce the amount of duplicated
code. Make the driver_override field const char, because it is not
modified by the core and it matches other subsystems.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220419113435.246203-3-krzysztof.kozlowski@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/amba')
-rw-r--r-- | include/linux/amba/bus.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/amba/bus.h b/include/linux/amba/bus.h index 6562f543c3e0..93799a72ff82 100644 --- a/include/linux/amba/bus.h +++ b/include/linux/amba/bus.h @@ -70,7 +70,11 @@ struct amba_device { unsigned int cid; struct amba_cs_uci_id uci; unsigned int irq[AMBA_NR_IRQS]; - char *driver_override; + /* + * Driver name to force a match. Do not set directly, because core + * frees it. Use driver_set_override() to set or clear it. + */ + const char *driver_override; }; struct amba_driver { |