soc/intel/cannonlake: Rename SA_DEV_SLOT_DSP
Device 4 was introduced with a wrong name, since it is the SA Thermal Subsystem and it does nothing have to do with DSP. Thus, rename it accordingly. Change-Id: I8edc764413df5f323098e60d0a3f0f87a7e656cb Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60049 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
20fe24b4f7
commit
5f2d114842
|
@ -59,9 +59,9 @@ static const struct slot_irq_constraints irq_constraints[] = {
|
|||
},
|
||||
},
|
||||
{
|
||||
.slot = SA_DEV_SLOT_DSP,
|
||||
.slot = SA_DEV_SLOT_TS,
|
||||
.fns = {
|
||||
ANY_PIRQ(SA_DEVFN_DSP),
|
||||
ANY_PIRQ(SA_DEVFN_TS),
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
#define SA_DEVFN_IGD PCI_DEVFN(SA_DEV_SLOT_IGD, 0)
|
||||
#define SA_DEV_IGD PCI_DEV(0, SA_DEV_SLOT_IGD, 0)
|
||||
|
||||
#define SA_DEV_SLOT_DSP 0x04
|
||||
#define SA_DEVFN_DSP PCI_DEVFN(SA_DEV_SLOT_DSP, 0)
|
||||
#define SA_DEV_DSP PCI_DEV(0, SA_DEV_SLOT_DSP, 0)
|
||||
#define SA_DEV_SLOT_TS 0x04
|
||||
#define SA_DEVFN_TS PCI_DEVFN(SA_DEV_SLOT_TS, 0)
|
||||
#define SA_DEV_TS PCI_DEV(0, SA_DEV_SLOT_TS, 0)
|
||||
|
||||
#define SA_DEV_SLOT_IPU 0x05
|
||||
#define SA_DEVFN_IPU PCI_DEVFN(SA_DEV_SLOT_IPU, 0)
|
||||
|
|
Loading…
Reference in New Issue