mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
50ac48ae3e
SRAM driver often returns -EPROBE_DEFER and thus this bus driver often prints error message, even if it probes successfully later. This is confusing for users and they often think that something is wrong. Use dev_err_probe() helper for printing error message. It handles -EPROBE_DEFER automatically. Signed-off-by: Jernej Skrabec <jernej.skrabec@gmail.com> Reviewed-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Maxime Ripard <maxime@cerno.tech> Link: https://lore.kernel.org/r/20211010071812.145178-1-jernej.skrabec@gmail.com
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Allwinner A64 Display Engine 2.0 Bus Driver
|
|
*
|
|
* Copyright (C) 2018 Icenowy Zheng <icenowy@aosc.io>
|
|
*/
|
|
|
|
#include <linux/of_platform.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/soc/sunxi/sunxi_sram.h>
|
|
|
|
static int sun50i_de2_bus_probe(struct platform_device *pdev)
|
|
{
|
|
struct device_node *np = pdev->dev.of_node;
|
|
int ret;
|
|
|
|
ret = sunxi_sram_claim(&pdev->dev);
|
|
if (ret)
|
|
return dev_err_probe(&pdev->dev, ret,
|
|
"Couldn't map SRAM to device\n");
|
|
|
|
of_platform_populate(np, NULL, NULL, &pdev->dev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int sun50i_de2_bus_remove(struct platform_device *pdev)
|
|
{
|
|
sunxi_sram_release(&pdev->dev);
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id sun50i_de2_bus_of_match[] = {
|
|
{ .compatible = "allwinner,sun50i-a64-de2", },
|
|
{ /* sentinel */ }
|
|
};
|
|
|
|
static struct platform_driver sun50i_de2_bus_driver = {
|
|
.probe = sun50i_de2_bus_probe,
|
|
.remove = sun50i_de2_bus_remove,
|
|
.driver = {
|
|
.name = "sun50i-de2-bus",
|
|
.of_match_table = sun50i_de2_bus_of_match,
|
|
},
|
|
};
|
|
|
|
builtin_platform_driver(sun50i_de2_bus_driver);
|