diff options
author | Subrata Banik <subrata.banik@intel.com> | 2018-01-10 10:51:50 +0530 |
---|---|---|
committer | Subrata Banik <subrata.banik@intel.com> | 2018-01-17 17:47:33 +0000 |
commit | 888520622b65bc0eabd55d04c314ffc1b0ed5b7e (patch) | |
tree | d2a82b65a338f334697c055418a48d78d4c149ab /src/soc/intel/skylake | |
parent | 7410f8be8fc3c5f9bceb61c0c61e02c697968cbd (diff) | |
download | coreboot-888520622b65bc0eabd55d04c314ffc1b0ed5b7e.tar.xz |
soc/intel/common: Add option to pass SoC IO resource
This patch ensures common block has option to reserve IO resources
based on SOC requirements. Also add pch_lpc_ prefix to maintain
same function nomenclature across all intel common block.
Change-Id: Ic00af688104bcea1aff06be6cbb20208a60e5f1d
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/23201
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/skylake')
-rw-r--r-- | src/soc/intel/skylake/lpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/skylake/lpc.c b/src/soc/intel/skylake/lpc.c index 9cd450b862..d0678c93fb 100644 --- a/src/soc/intel/skylake/lpc.c +++ b/src/soc/intel/skylake/lpc.c @@ -3,7 +3,7 @@ * * Copyright (C) 2008-2009 coresystems GmbH * Copyright (C) 2014 Google Inc. - * Copyright (C) 2015 Intel Corporation. + * Copyright (C) 2015-2018 Intel Corporation. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -115,7 +115,7 @@ static void clock_gate_8254(struct device *dev) itss_clock_gate_8254(); } -void lpc_init(struct device *dev) +void lpc_soc_init(struct device *dev) { /* Legacy initialization */ isa_dma_init(); |