diff options
author | Tom Rini | 2023-10-26 14:31:36 -0400 |
---|---|---|
committer | Tom Rini | 2023-11-07 14:49:40 -0500 |
commit | d563bb5d167dbb8630ececbb35e9cdbef0ddb4be (patch) | |
tree | dd689ad4a097144319a4882a99fad9b6076ebfcc /drivers | |
parent | eff0aa47b5e668dde39a0d9d1b2de92cd5fa8f29 (diff) |
clk_k210.c: Clean up how we handle nop
Now that sandbox has <asm/barrier.h> and defines nop() there we should
include that in our driver for clarity and then remove our local nop()
from <k210/pll.h>.
Reviewed-by: Sean Anderson <seanga2@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/clk_k210.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/clk_k210.c b/drivers/clk/clk_k210.c index c534cc07e09..b9469b93853 100644 --- a/drivers/clk/clk_k210.c +++ b/drivers/clk/clk_k210.c @@ -16,6 +16,7 @@ #include <dt-bindings/mfd/k210-sysctl.h> #include <k210/pll.h> #include <linux/bitfield.h> +#include <asm/barrier.h> DECLARE_GLOBAL_DATA_PTR; |