diff options
| author | Konrad Dybcio <[email protected]> | 2023-04-21 20:50:39 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-05-02 14:23:58 -0400 |
| commit | aa539d89e18487ab5dc5feb3d8d8a3fca1a04b97 (patch) | |
| tree | 022fec451e052dc70645ae496955d8b44be173af /drivers/serial | |
| parent | babdadc8a51ec54157d9e050eaf3f745052e1583 (diff) | |
serial: msm-geni: Use upstream Linux bindings
The name "se" is used in upstream Linux device trees and has been for
ages, long before this U-Boot-ism was introduced. Same goes for the
existing compatible. Get rid of that.
[vzapolskiy: removed a ready change in the driver]
Signed-off-by: Konrad Dybcio <[email protected]>
Signed-off-by: Vladimir Zapolskiy <[email protected]>
Diffstat (limited to 'drivers/serial')
| -rw-r--r-- | drivers/serial/serial_msm_geni.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/serial/serial_msm_geni.c b/drivers/serial/serial_msm_geni.c index 3a200f45a6c..29fae810d6f 100644 --- a/drivers/serial/serial_msm_geni.c +++ b/drivers/serial/serial_msm_geni.c @@ -547,7 +547,9 @@ static int msm_serial_ofdata_to_platdata(struct udevice *dev) } static const struct udevice_id msm_serial_ids[] = { - {.compatible = "qcom,msm-geni-uart"}, {}}; + { .compatible = "qcom,geni-debug-uart" }, + { } +}; U_BOOT_DRIVER(serial_msm_geni) = { .name = "serial_msm_geni", |
