From e414a4e5b5ef7a89a484c8edbe3804bd025a8416 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Thu, 3 Jan 2019 10:40:43 +0100 Subject: src: Use "foo **bar" instead of "foo ** bar" Change-Id: I8260424ee243c06827f2b5939e1568e52539b282 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/c/30624 Tested-by: build bot (Jenkins) Reviewed-by: Tristan Corrick Reviewed-by: Richard Spiegel --- src/southbridge/intel/bd82x6x/azalia.c | 2 +- src/southbridge/intel/i82801ix/hdaudio.c | 2 +- src/southbridge/intel/i82801jx/hdaudio.c | 2 +- src/southbridge/intel/ibexpeak/azalia.c | 2 +- src/southbridge/intel/lynxpoint/hda_verb.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/southbridge/intel') diff --git a/src/southbridge/intel/bd82x6x/azalia.c b/src/southbridge/intel/bd82x6x/azalia.c index d5721e6e0a..e960b061cb 100644 --- a/src/southbridge/intel/bd82x6x/azalia.c +++ b/src/southbridge/intel/bd82x6x/azalia.c @@ -88,7 +88,7 @@ no_codec: return 0; } -static u32 find_verb(struct device *dev, u32 viddid, const u32 ** verb) +static u32 find_verb(struct device *dev, u32 viddid, const u32 **verb) { int idx=0; diff --git a/src/southbridge/intel/i82801ix/hdaudio.c b/src/southbridge/intel/i82801ix/hdaudio.c index b4cee4633c..d6d72e1803 100644 --- a/src/southbridge/intel/i82801ix/hdaudio.c +++ b/src/southbridge/intel/i82801ix/hdaudio.c @@ -88,7 +88,7 @@ no_codec: return 0; } -static u32 find_verb(struct device *dev, u32 viddid, const u32 ** verb) +static u32 find_verb(struct device *dev, u32 viddid, const u32 **verb) { int idx=0; diff --git a/src/southbridge/intel/i82801jx/hdaudio.c b/src/southbridge/intel/i82801jx/hdaudio.c index 0c9d39ce92..afde2cf6e2 100644 --- a/src/southbridge/intel/i82801jx/hdaudio.c +++ b/src/southbridge/intel/i82801jx/hdaudio.c @@ -88,7 +88,7 @@ no_codec: return 0; } -static u32 find_verb(struct device *dev, u32 viddid, const u32 ** verb) +static u32 find_verb(struct device *dev, u32 viddid, const u32 **verb) { int idx=0; diff --git a/src/southbridge/intel/ibexpeak/azalia.c b/src/southbridge/intel/ibexpeak/azalia.c index 9e3ed433ac..7f3e6cdee4 100644 --- a/src/southbridge/intel/ibexpeak/azalia.c +++ b/src/southbridge/intel/ibexpeak/azalia.c @@ -86,7 +86,7 @@ no_codec: return 0; } -static u32 find_verb(struct device *dev, u32 viddid, const u32 ** verb) +static u32 find_verb(struct device *dev, u32 viddid, const u32 **verb) { int idx=0; diff --git a/src/southbridge/intel/lynxpoint/hda_verb.c b/src/southbridge/intel/lynxpoint/hda_verb.c index a8a139c40c..93a004eb79 100644 --- a/src/southbridge/intel/lynxpoint/hda_verb.c +++ b/src/southbridge/intel/lynxpoint/hda_verb.c @@ -160,7 +160,7 @@ static int hda_wait_for_valid(u8 *base) */ static u32 hda_find_verb(u32 verb_table_bytes, const u32 *verb_table_data, - u32 viddid, const u32 ** verb) + u32 viddid, const u32 **verb) { int idx=0; -- cgit v1.2.3