Skip to content

Commit 59bf860

Browse files
committed
parisc: Makefile: Adjust order in which drivers should be loaded
This is the order in which the drivers are initialized in setup.c. The order is important when the drivers are convertet to use the initcall_*() startup framework. Signed-off-by: Helge Deller <[email protected]>
1 parent 358ad81 commit 59bf860

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

drivers/parisc/Makefile

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
# SPDX-License-Identifier: GPL-2.0
22
#
3-
# Makefile for most of the non-PCI devices in PA-RISC machines
3+
# Makefile PCI and non-PCI devices in PA-RISC machines
4+
#
5+
# Keep the order below, e.g.
6+
# - ccio before any potential subdevices
7+
# - gsc is required before lasi and wax
8+
# - asp and wax before the EISA adapters for the IRQ regions
9+
# - EISA must come before PCI to be sure it gets IRQ region
410
#
511

6-
# I/O SAPIC is also on IA64 platforms.
7-
# The two could be merged into a common source some day.
812
obj-$(CONFIG_IOSAPIC) += iosapic.o
913
obj-$(CONFIG_IOMMU_SBA) += sba_iommu.o
1014
obj-$(CONFIG_PCI_LBA) += lba_pci.o
1115
obj-$(CONFIG_IOMMU_CCIO) += ccio-dma.o
1216

1317
obj-$(CONFIG_GSC) += gsc.o
14-
15-
obj-$(CONFIG_HPPB) += hppb.o
16-
obj-$(CONFIG_GSC_DINO) += dino.o
1718
obj-$(CONFIG_GSC_LASI) += lasi.o asp.o
1819
obj-$(CONFIG_GSC_WAX) += wax.o
1920
obj-$(CONFIG_EISA) += eisa.o eisa_enumerator.o eisa_eeprom.o
21+
obj-$(CONFIG_HPPB) += hppb.o
22+
obj-$(CONFIG_GSC_DINO) += dino.o
2023

2124
obj-$(CONFIG_SUPERIO) += superio.o
2225
obj-$(CONFIG_CHASSIS_LCD_LED) += led.o
2326
obj-$(CONFIG_PDC_STABLE) += pdc_stable.o
2427
obj-y += power.o
25-

0 commit comments

Comments
 (0)