Commit 13c11072 authored by Tsung-Han Lin's avatar Tsung-Han Lin Committed by Greg Kroah-Hartman
Browse files

staging:board: remove unnecessary function



Remove the unnecessary 'of_can_translate_address',
which is already removed in commit
d9c6866b ("of: kill off
of_can_translate_address").

Signed-off-by: default avatarTsung-Han Lin <tsunghan.tw@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4f0cc93b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -11,8 +11,7 @@ static bool find_by_address(u64 base_address)
	struct resource res;

	while (dn) {
		if (of_can_translate_address(dn)
		    && !of_address_to_resource(dn, 0, &res)) {
		if (!of_address_to_resource(dn, 0, &res)) {
			if (res.start == base_address) {
				of_node_put(dn);
				return true;