diff options
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/common/hda_verb.c | 8 | ||||
-rw-r--r-- | src/soc/qualcomm/ipq806x/timer.c | 2 | ||||
-rw-r--r-- | src/soc/samsung/exynos5250/fb.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/soc/intel/common/hda_verb.c b/src/soc/intel/common/hda_verb.c index 6404ee281f..946972ef7e 100644 --- a/src/soc/intel/common/hda_verb.c +++ b/src/soc/intel/common/hda_verb.c @@ -139,10 +139,10 @@ static int hda_wait_for_valid(u32 base) /** * Find a specific entry within a verb table * - * @verb_table_bytes: verb table size in bytes - * @verb_table_data: verb table data - * @viddid: vendor/device to search for - * @verb_out: pointer to entry within table + * @param verb_table_bytes: verb table size in bytes + * @param verb_table_data: verb table data + * @param viddid: vendor/device to search for + * @param verb: pointer to entry within table * * Returns size of the entry within the verb table, * Returns 0 if the entry is not found diff --git a/src/soc/qualcomm/ipq806x/timer.c b/src/soc/qualcomm/ipq806x/timer.c index 676c7f53e8..3cb9531d33 100644 --- a/src/soc/qualcomm/ipq806x/timer.c +++ b/src/soc/qualcomm/ipq806x/timer.c @@ -50,7 +50,7 @@ void init_timer(void) /** * udelay - generates micro second delay. - * @usec: delay duration in microseconds + * @param usec: delay duration in microseconds * * With 32KHz clock, minimum possible delay is 31.25 Micro seconds and * its multiples. In Rumi GPT clock is 32 KHz diff --git a/src/soc/samsung/exynos5250/fb.c b/src/soc/samsung/exynos5250/fb.c index 080be49250..e0355fc715 100644 --- a/src/soc/samsung/exynos5250/fb.c +++ b/src/soc/samsung/exynos5250/fb.c @@ -114,7 +114,7 @@ static void fimd_bypass(void) * Initialize display controller. * * @param lcdbase pointer to the base address of framebuffer. - * @pd pointer to the main panel_data structure + * @param pd pointer to the main panel_data structure */ void fb_init(unsigned long int fb_size, void *lcdbase, struct exynos5_fimd_panel *pd) |