diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-01-03 10:40:43 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-01-07 10:29:14 +0000 |
commit | e414a4e5b5ef7a89a484c8edbe3804bd025a8416 (patch) | |
tree | 86b90b9289542d0ad26364fc0985e7bb8e6f62d5 /src/southbridge/intel/i82801jx | |
parent | 0f8b8d920c2f060bbe7a9139fde823e3b2e875d7 (diff) |
src: Use "foo **bar" instead of "foo ** bar"
Change-Id: I8260424ee243c06827f2b5939e1568e52539b282
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/30624
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tristan Corrick <tristan@corrick.kiwi>
Reviewed-by: Richard Spiegel <richard.spiegel@silverbackltd.com>
Diffstat (limited to 'src/southbridge/intel/i82801jx')
-rw-r--r-- | src/southbridge/intel/i82801jx/hdaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |