diff options
author | Conor Dooley | 2023-12-14 10:59:57 +0000 |
---|---|---|
committer | Stephen Boyd | 2023-12-17 14:47:43 -0800 |
commit | 2c973fb5d37f5a017fc1dfbe449b468cd46fab8f (patch) | |
tree | a079be0cf159f9f349b85226b5e26a52447b1352 /drivers/clk | |
parent | 29d861b5d29b6c80a887e93ad982cbbf4af2a06b (diff) |
clk: microchip: mpfs-ccc: replace include of asm-generic/errno-base.h
As evidenced by the fact that only 2 other drivers include this header,
it is not a normal thing to do. Including the regular version of this
header is far more conventional for drivers.
Acked-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
Link: https://lore.kernel.org/r/20231214-dipper-earshot-72eef3059961@spud
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/microchip/clk-mpfs-ccc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/microchip/clk-mpfs-ccc.c b/drivers/clk/microchip/clk-mpfs-ccc.c index bce61c45e967..3a3ea2d142f8 100644 --- a/drivers/clk/microchip/clk-mpfs-ccc.c +++ b/drivers/clk/microchip/clk-mpfs-ccc.c @@ -4,8 +4,8 @@ * * Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries */ -#include "asm-generic/errno-base.h" #include <linux/clk-provider.h> +#include <linux/errno.h> #include <linux/io.h> #include <linux/module.h> #include <linux/platform_device.h> |