Commit 18f883b6 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] ppc64: small enter_rtas fix

From: Anton Blanchard <anton@samba.org>

enter_rtas now takes an unsigned long.
parent b086c8a3
......@@ -273,7 +273,7 @@ static inline void disable_surveillance(void)
args.args[0] = SURVEILLANCE_TOKEN;
args.args[1] = 0;
args.args[2] = 0;
enter_rtas((void *) __pa(&args));
enter_rtas(__pa(&args));
}
#endif
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment