summaryrefslogtreecommitdiff
path: root/src/soc/intel/denverton_ns/npk.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-27 17:40:58 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2018-06-04 02:36:19 +0000
commit2ec4183c3c93728e5f94e57fe1d10d72843ca7ec (patch)
tree97c0934bc174e1407a61b1f57f6c2388925e6c4a /src/soc/intel/denverton_ns/npk.c
parent143fb46d47f8450d91820cf8f5ec6d9f524e8e49 (diff)
downloadcoreboot-2ec4183c3c93728e5f94e57fe1d10d72843ca7ec.tar.xz
soc/intel/denverton_ns: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: I15e624b40d11f61a3870a6083be82d062690498d Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26587 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/soc/intel/denverton_ns/npk.c')
-rw-r--r--src/soc/intel/denverton_ns/npk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/denverton_ns/npk.c b/src/soc/intel/denverton_ns/npk.c
index 46e5c7ef74..7b63054ae8 100644
--- a/src/soc/intel/denverton_ns/npk.c
+++ b/src/soc/intel/denverton_ns/npk.c
@@ -23,14 +23,14 @@
#include <soc/pci_devs.h>
#include <soc/ramstage.h>
-static void npk_init(device_t dev)
+static void npk_init(struct device *dev)
{
printk(BIOS_DEBUG, "pch: npk_init\n");
/* TODO */
}
-static void pci_npk_read_resources(device_t dev)
+static void pci_npk_read_resources(struct device *dev)
{
/* Skip NorthPeak enumeration. */
}