mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-15 19:51:37 +00:00
bus: ti-sysc: change in a normal driver
The module defines a duplicate uclass driver for UCLASS_SIMPLE_BUS, but it is not allowed. This breaks of-platdata and makes the result non-deterministic. The driver does not need to be an uclass driver, so lets remove it. I had turned it into an uclass driver because I thought wrongly it had to call the dm_scan_fdt_dev routine to work properly, but some tests on the board have shown otherwise. Signed-off-by: Dario Binacchi <dariobin@libero.it> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
d392d32fd8
commit
929e9940b0
1 changed files with 0 additions and 6 deletions
|
@ -148,12 +148,6 @@ clocks_err:
|
|||
return err;
|
||||
}
|
||||
|
||||
UCLASS_DRIVER(ti_sysc) = {
|
||||
.id = UCLASS_SIMPLE_BUS,
|
||||
.name = "ti_sysc",
|
||||
.post_bind = dm_scan_fdt_dev
|
||||
};
|
||||
|
||||
U_BOOT_DRIVER(ti_sysc) = {
|
||||
.name = "ti_sysc",
|
||||
.id = UCLASS_SIMPLE_BUS,
|
||||
|
|
Loading…
Add table
Reference in a new issue