File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -869,4 +869,4 @@ static __init int hmat_init(void)
869
869
acpi_put_table (tbl );
870
870
return 0 ;
871
871
}
872
- device_initcall (hmat_init );
872
+ subsys_initcall (hmat_init );
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: GPL-2.0
2
- obj-$(CONFIG_DEV_DAX_HMEM) += dax_hmem.o
2
+ # device_hmem.o deliberately precedes dax_hmem.o for initcall ordering
3
3
obj-$(CONFIG_DEV_DAX_HMEM_DEVICES) += device_hmem.o
4
+ obj-$(CONFIG_DEV_DAX_HMEM) += dax_hmem.o
4
5
5
6
device_hmem-y := device.o
6
7
dax_hmem-y := hmem.o
Original file line number Diff line number Diff line change @@ -104,4 +104,4 @@ static __init int hmem_init(void)
104
104
* As this is a fallback for address ranges unclaimed by the ACPI HMAT
105
105
* parsing it must be at an initcall level greater than hmat_init().
106
106
*/
107
- late_initcall (hmem_init );
107
+ device_initcall (hmem_init );
You can’t perform that action at this time.
0 commit comments