diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-24 22:29:44 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2018-06-04 02:34:28 +0000 |
commit | b13fac37ebfe9451229be1c3ebefd9c05f8afb49 (patch) | |
tree | 16cbafd9959681b20c3735ad41a3080c5a6f41dd /src/soc/intel/braswell/sd.c | |
parent | 15a487a57666a7eb42d33f41e4a235efe67439d8 (diff) | |
download | coreboot-b13fac37ebfe9451229be1c3ebefd9c05f8afb49.tar.xz |
soc/intel/braswell: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: I05a46ab0ae6b4493895c1231fedb59c96efdf793
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26457
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/braswell/sd.c')
-rw-r--r-- | src/soc/intel/braswell/sd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/braswell/sd.c b/src/soc/intel/braswell/sd.c index 4f192aba30..97c39b3254 100644 --- a/src/soc/intel/braswell/sd.c +++ b/src/soc/intel/braswell/sd.c @@ -31,7 +31,7 @@ #define CAP_OVERRIDE_HIGH 0xa4 # define USE_CAP_OVERRIDES (1 << 31) -static void sd_init(device_t dev) +static void sd_init(struct device *dev) { struct soc_intel_braswell_config *config = dev->chip_info; |