You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am developing a device driver for a HAT that has two crystal oscillators. I have made a device tree overlay file to describe the oscillators which looks like the following:
Loading of this dtb file fails with the error dterror: can't find symbol 'clocks'. If I understand it correctly, this error is caused by the fact that the node clocks in the file bcm2708.dtsi has no label.
In the file bcm2708.dtsi, can we replace the line
clocks {
by
clocks: clocks {
?
Or am I missing something?
The text was updated successfully, but these errors were encountered:
This is a significant revision of the bcm2835-sdhost driver. It
improves on the original in a number of ways:
1) Through the use of CMD23 for reads it appears to avoid problems
reading some sectors on certain high speed cards.
2) Better atomicity to prevent crashes.
3) Higher performance.
4) Activity logging included, for easier diagnosis in the event
of a problem.
I am developing a device driver for a HAT that has two crystal oscillators. I have made a device tree overlay file to describe the oscillators which looks like the following:
Loading of this
dtb
file fails with the errordterror: can't find symbol 'clocks'
. If I understand it correctly, this error is caused by the fact that the nodeclocks
in the filebcm2708.dtsi
has no label.In the file
bcm2708.dtsi
, can we replace the lineby
?
Or am I missing something?
The text was updated successfully, but these errors were encountered: