diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-27 16:57:24 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-06-01 16:26:25 +0000 |
commit | 3c8b5d00c3e52d4149ff842f674ce0f68cd86509 (patch) | |
tree | cc5fa9484f53de0400aaff6214611d35bb7b54d7 /src/soc/intel/cannonlake/smmrelocate.c | |
parent | 040aff27458ff2e41052c14cf4a981641313a3f6 (diff) |
soc/intel/cannonlake: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: Iea56a6560bb23d48d19211304e57fc08e1c27fd6
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26584
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/cannonlake/smmrelocate.c')
-rw-r--r-- | src/soc/intel/cannonlake/smmrelocate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/cannonlake/smmrelocate.c b/src/soc/intel/cannonlake/smmrelocate.c index 20da625511..83330e6ba6 100644 --- a/src/soc/intel/cannonlake/smmrelocate.c +++ b/src/soc/intel/cannonlake/smmrelocate.c @@ -170,7 +170,7 @@ void smm_relocation_handler(int cpu, uintptr_t curr_smbase, write_smrr(relo_params); } -static void fill_in_relocation_params(device_t dev, +static void fill_in_relocation_params(struct device *dev, struct smm_relocation_params *params) { void *handler_base; |