Remove the __init annotation from pmu_init() to avoid the
following warning.
WARNING: vmlinux.o(.data+0x4739c): Section mismatch in reference from the variable via_pmu_driver to the function .init.text:pmu_init()
The variable via_pmu_driver references
the function __init pmu_init()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console
Signed-off-by: Mathieu Malaterre <redacted>
---
drivers/macintosh/via-pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Remove the __init annotation from pmu_init() to avoid the
following warning.
WARNING: vmlinux.o(.data+0x4739c): Section mismatch in reference from the variable via_pmu_driver to the function .init.text:pmu_init()
The variable via_pmu_driver references
the function __init pmu_init()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console
Signed-off-by: Mathieu Malaterre <redacted>
---
drivers/macintosh/via-pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -378,7 +378,7 @@ static int pmu_probe(void)returnvias==NULL?-ENODEV:0;}-staticint__initpmu_init(void)+staticintpmu_init(void){if(vias==NULL)return-ENODEV;
pmu_init() is really an init function only called by another init
function (adb_init()).
So I think it could be good to let the __init marker.
Did you try:
Make the struct via_pmu_driver const to avoid following warning:
WARNING: vmlinux.o(.data+0x4739c): Section mismatch in reference from the variable via_pmu_driver to the function .init.text:pmu_init()
The variable via_pmu_driver references
the function __init pmu_init()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console
Signed-off-by: Mathieu Malaterre <redacted>
Suggested-by: Laurent Vivier <redacted>
---
v2: pmu_init() is really an init function, leave __init marker
drivers/macintosh/via-pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
On Tue, Feb 13, 2018 at 7:54 PM, Laurent Vivier [off-list ref] wrote:
quoted hunk
On 07/02/2018 20:44, Mathieu Malaterre wrote:
quoted
Remove the __init annotation from pmu_init() to avoid the
following warning.
WARNING: vmlinux.o(.data+0x4739c): Section mismatch in reference from the variable via_pmu_driver to the function .init.text:pmu_init()
The variable via_pmu_driver references
the function __init pmu_init()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console
Signed-off-by: Mathieu Malaterre <redacted>
---
drivers/macintosh/via-pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -378,7 +378,7 @@ static int pmu_probe(void)returnvias==NULL?-ENODEV:0;}-staticint__initpmu_init(void)+staticintpmu_init(void){if(vias==NULL)return-ENODEV;
pmu_init() is really an init function only called by another init
function (adb_init()).
So I think it could be good to let the __init marker.
Did you try:
Make the struct via_pmu_driver const to avoid following warning:
WARNING: vmlinux.o(.data+0x4739c): Section mismatch in reference from the variable via_pmu_driver to the function .init.text:pmu_init()
The variable via_pmu_driver references
the function __init pmu_init()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console
Signed-off-by: Mathieu Malaterre <redacted>
Suggested-by: Laurent Vivier <redacted>
---
v2: pmu_init() is really an init function, leave __init marker
drivers/macintosh/via-pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
From: Michael Ellerman <hidden> Date: 2018-03-14 09:27:50
On Wed, 2018-02-14 at 21:15:18 UTC, Mathieu Malaterre wrote:
Make the struct via_pmu_driver const to avoid following warning:
WARNING: vmlinux.o(.data+0x4739c): Section mismatch in reference from the variable via_pmu_driver to the function .init.text:pmu_init()
The variable via_pmu_driver references
the function __init pmu_init()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console
Signed-off-by: Mathieu Malaterre <redacted>
Suggested-by: Laurent Vivier <redacted>
Reviewed-by: Laurent Vivier <redacted>