soc/broadwell: Don't use device_t

Use of device_t is deprecated.

Change-Id: Ifdf3d1870500812a417eaa5e93fcc168629c094f
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/28692
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
This commit is contained in:
Elyes HAOUAS 2018-09-20 08:46:35 +02:00 committed by Martin Roth
parent e2d76a15d1
commit 4658a98a63
4 changed files with 9 additions and 9 deletions

View File

@ -43,6 +43,6 @@ int pch_is_wpt(void);
int pch_is_wpt_ulx(void);
u32 pch_read_soft_strap(int id);
void pch_log_state(void);
void pch_disable_devfn(device_t dev);
void pch_disable_devfn(struct device *dev);
#endif

View File

@ -51,7 +51,7 @@
#define XHCI_PLSW_ENABLE (5 << 5) /* Transition from disabled */
#ifdef __SMM__
void usb_xhci_sleep_prepare(device_t dev, u8 slp_typ);
void usb_xhci_sleep_prepare(pci_devfn_t dev, u8 slp_typ);
#endif
#endif

View File

@ -77,7 +77,7 @@ u32 pch_read_soft_strap(int id)
#ifndef __PRE_RAM__
/* Put device in D3Hot Power State */
static void pch_enable_d3hot(device_t dev)
static void pch_enable_d3hot(struct device *dev)
{
u32 reg32 = pci_read_config32(dev, PCH_PCS);
reg32 |= PCH_PCS_PS_D3HOT;
@ -92,7 +92,7 @@ static void rcba_function_disable(u32 reg, u32 bit)
}
/* Set bit in Function Disable register to hide this device */
void pch_disable_devfn(device_t dev)
void pch_disable_devfn(struct device *dev)
{
switch (dev->path.pci.devfn) {
case PCH_DEVFN_ADSP: /* Audio DSP */
@ -183,7 +183,7 @@ void pch_disable_devfn(device_t dev)
}
}
void broadwell_pch_enable_dev(device_t dev)
void broadwell_pch_enable_dev(struct device *dev)
{
u32 reg32;

View File

@ -25,7 +25,7 @@
#include <soc/cpu.h>
#ifdef __SMM__
static u8 *usb_xhci_mem_base(device_t dev)
static u8 *usb_xhci_mem_base(pci_devfn_t dev)
{
u32 mem_base = pci_read_config32(dev, PCI_BASE_ADDRESS_0);
@ -36,7 +36,7 @@ static u8 *usb_xhci_mem_base(device_t dev)
return (u8 *)(mem_base & ~0xf);
}
static int usb_xhci_port_count_usb3(device_t dev)
static int usb_xhci_port_count_usb3(pci_devfn_t dev)
{
/* PCH-LP has 4 SS ports */
return 4;
@ -69,7 +69,7 @@ static void usb_xhci_reset_port_usb3(u8 *mem_base, int port)
* b) Poll for warm reset complete
* c) Write 1 to port change status bits
*/
static void usb_xhci_reset_usb3(device_t dev, int all)
static void usb_xhci_reset_usb3(pci_devfn_t dev, int all)
{
u32 status, port_disabled;
int timeout, port;
@ -140,7 +140,7 @@ static void usb_xhci_reset_usb3(device_t dev, int all)
}
/* Handler for XHCI controller on entry to S3/S4/S5 */
void usb_xhci_sleep_prepare(device_t dev, u8 slp_typ)
void usb_xhci_sleep_prepare(pci_devfn_t dev, u8 slp_typ)
{
u16 reg16;
u32 reg32;