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>
This commit is contained in:
parent
0f8b8d920c
commit
e414a4e5b5
|
@ -105,7 +105,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)
|
||||
{
|
||||
printk(BIOS_DEBUG, "azalia_audio: dev=%s\n", dev_path(dev));
|
||||
printk(BIOS_DEBUG, "azalia_audio: Reading viddid=%x\n", viddid);
|
||||
|
|
|
@ -36,7 +36,7 @@ static acpi_cstate_t cst_entries[] = {
|
|||
{2, 17, 250, {0x01, 8, 0, {0}, DEFAULT_PMBASE + LV3, 0}},
|
||||
};
|
||||
|
||||
int get_cst_entries(acpi_cstate_t ** entries)
|
||||
int get_cst_entries(acpi_cstate_t **entries)
|
||||
{
|
||||
*entries = cst_entries;
|
||||
return ARRAY_SIZE(cst_entries);
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue