diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-09-18 13:28:49 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-09-21 14:13:02 +0000 |
commit | dc0352835525598e0c72d6fbcfba428113847e59 (patch) | |
tree | 64b95047aa790594ce7e29a3f8226b0844834b72 /src/southbridge/intel/bd82x6x/pch.h | |
parent | 756a0bd2fe05ce187b3702805cfc78f60cc64477 (diff) | |
download | coreboot-dc0352835525598e0c72d6fbcfba428113847e59.tar.xz |
sb/intel/bd82x6x: Don't use device_t
Use of device_t is deprecated.
Change-Id: I4909ebffc978f537bbf6269d9e27dbaca43daa10
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/28657
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Diffstat (limited to 'src/southbridge/intel/bd82x6x/pch.h')
-rw-r--r-- | src/southbridge/intel/bd82x6x/pch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/bd82x6x/pch.h b/src/southbridge/intel/bd82x6x/pch.h index 65aac55b29..66f5727e61 100644 --- a/src/southbridge/intel/bd82x6x/pch.h +++ b/src/southbridge/intel/bd82x6x/pch.h @@ -64,7 +64,7 @@ void intel_pch_finalize_smm(void); #if !defined(__PRE_RAM__) #if !defined(__SIMPLE_DEVICE__) #include "chip.h" -void pch_enable(device_t dev); +void pch_enable(struct device *dev); #endif int pch_silicon_revision(void); int pch_silicon_type(void); |