mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
bus: imx-weim: remove incorrect __init annotations
The probe function is no longer __init, so anything it calls now
must also be available at runtime, as Kbuild points out when building
with clang-9:
WARNING: vmlinux.o(.text+0x6e7040): Section mismatch in reference from the function weim_probe() to the function .init.text:imx_weim_gpr_setup()
The function weim_probe() references
the function __init imx_weim_gpr_setup().
This is often because weim_probe lacks a __init
annotation or the annotation of imx_weim_gpr_setup is wrong.
WARNING: vmlinux.o(.text+0x6e70f0): Section mismatch in reference from the function weim_probe() to the function .init.text:weim_timing_setup()
The function weim_probe() references
the function __init weim_timing_setup().
This is often because weim_probe lacks a __init
annotation or the annotation of weim_timing_setup is wrong.
Remove the remaining __init markings that are now wrong.
Fixes: 4a92f07816
("bus: imx-weim: use module_platform_driver()")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
@@ -76,7 +76,7 @@ static const struct of_device_id weim_id_table[] = {
|
|||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, weim_id_table);
|
MODULE_DEVICE_TABLE(of, weim_id_table);
|
||||||
|
|
||||||
static int __init imx_weim_gpr_setup(struct platform_device *pdev)
|
static int imx_weim_gpr_setup(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct device_node *np = pdev->dev.of_node;
|
struct device_node *np = pdev->dev.of_node;
|
||||||
struct property *prop;
|
struct property *prop;
|
||||||
@@ -126,7 +126,7 @@ err:
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Parse and set the timing for this device. */
|
/* Parse and set the timing for this device. */
|
||||||
static int __init weim_timing_setup(struct device *dev,
|
static int weim_timing_setup(struct device *dev,
|
||||||
struct device_node *np, void __iomem *base,
|
struct device_node *np, void __iomem *base,
|
||||||
const struct imx_weim_devtype *devtype,
|
const struct imx_weim_devtype *devtype,
|
||||||
struct cs_timing_state *ts)
|
struct cs_timing_state *ts)
|
||||||
|
Reference in New Issue
Block a user