os: Drop unused _tree member in Root_clock_divider

Its not used anywhere in the code. Clang produces warning due to this.

Issue #3938
This commit is contained in:
Piotr Tworek 2020-11-04 01:06:03 +01:00 committed by Christian Helmuth
parent 736b000c19
commit db17d51ff1

View File

@ -173,7 +173,6 @@ struct Driver::Ccm
Clock & _parent;
Clock_tree & _tree;
public:
@ -182,7 +181,7 @@ struct Driver::Ccm
Clock & parent,
Clock_tree & tree)
: Clock(name, tree), Mmio(base),
_parent(parent), _tree(tree) {}
_parent(parent) {}
void set_rate(unsigned long) override;
unsigned long get_rate() const override;