diff options
author | Samuel Holland <samuel@sholland.org> | 2022-08-15 07:12:44 +0300 |
---|---|---|
committer | Jernej Skrabec <jernej.skrabec@gmail.com> | 2022-09-18 23:54:02 +0300 |
commit | 460d9cb62f7fe82cc835d6b3924a8d06fd2d510a (patch) | |
tree | 4fb83b3208cab05d944d0b32b61409e699c1da9e /include/linux/soc | |
parent | e3c95edb1bd8b9c2cb0caa6ae382fc8080f6a0ed (diff) | |
download | linux-460d9cb62f7fe82cc835d6b3924a8d06fd2d510a.tar.xz |
soc: sunxi: sram: Return void from the release function
There is no point in returning an error here, as the caller can do
nothing about it. In fact, all callers already ignore the return value.
Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>
Signed-off-by: Samuel Holland <samuel@sholland.org>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Tested-by: Heiko Stuebner <heiko@sntech.de>
Link: https://lore.kernel.org/r/20220815041248.53268-8-samuel@sholland.org
Signed-off-by: Jernej Skrabec <jernej.skrabec@gmail.com>
Diffstat (limited to 'include/linux/soc')
-rw-r--r-- | include/linux/soc/sunxi/sunxi_sram.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/soc/sunxi/sunxi_sram.h b/include/linux/soc/sunxi/sunxi_sram.h index c5f663bba9c2..60e274d1b821 100644 --- a/include/linux/soc/sunxi/sunxi_sram.h +++ b/include/linux/soc/sunxi/sunxi_sram.h @@ -14,6 +14,6 @@ #define _SUNXI_SRAM_H_ int sunxi_sram_claim(struct device *dev); -int sunxi_sram_release(struct device *dev); +void sunxi_sram_release(struct device *dev); #endif /* _SUNXI_SRAM_H_ */ |