mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-05 06:39:27 +00:00
m68k/atari, m68k/sun3: Fix SCSI platform device registration when driver is modular
Fixes:3ff228af84
("atari_scsi: Convert to platform device") Fixes:0d31f87591
("sun3_scsi: Convert to platform device") Reported-by: Michael Schmitz <schmitzmic@gmail.com> Signed-off-by: Finn Thain <fthain@telegraphics.com.au> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
parent
ea8d65ad69
commit
2d522618c8
@ -858,7 +858,7 @@ static struct platform_device *atari_netusbee_devices[] __initdata = {
|
||||
};
|
||||
#endif /* CONFIG_ATARI_ETHERNEC */
|
||||
|
||||
#ifdef CONFIG_ATARI_SCSI
|
||||
#if IS_ENABLED(CONFIG_ATARI_SCSI)
|
||||
static const struct resource atari_scsi_st_rsrc[] __initconst = {
|
||||
{
|
||||
.flags = IORESOURCE_IRQ,
|
||||
@ -910,7 +910,7 @@ int __init atari_platform_init(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_ATARI_SCSI
|
||||
#if IS_ENABLED(CONFIG_ATARI_SCSI)
|
||||
if (ATARIHW_PRESENT(ST_SCSI))
|
||||
platform_device_register_simple("atari_scsi", -1,
|
||||
atari_scsi_st_rsrc, ARRAY_SIZE(atari_scsi_st_rsrc));
|
||||
|
@ -171,7 +171,7 @@ static void __init sun3_sched_init(irq_handler_t timer_routine)
|
||||
intersil_clear();
|
||||
}
|
||||
|
||||
#ifdef CONFIG_SUN3_SCSI
|
||||
#if IS_ENABLED(CONFIG_SUN3_SCSI)
|
||||
|
||||
static const struct resource sun3_scsi_vme_rsrc[] __initconst = {
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user