diff options
author | Dimitris Papastamos <dimitris.papastamos@arm.com> | 2018-10-12 17:45:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-12 17:45:09 +0100 |
commit | 776bd2b618776d251282da1c4eeecf234b34ea11 (patch) | |
tree | e573fc32733f085175b7dc04591870591bdd1e84 /drivers | |
parent | 02126db803ed85234746aa5fcb0f1fa26699a355 (diff) | |
parent | 65199dc844d66959a71fe92bdd65f70ed6e34c1e (diff) | |
download | platform_external_arm-trusted-firmware-776bd2b618776d251282da1c4eeecf234b34ea11.tar.gz platform_external_arm-trusted-firmware-776bd2b618776d251282da1c4eeecf234b34ea11.tar.bz2 platform_external_arm-trusted-firmware-776bd2b618776d251282da1c4eeecf234b34ea11.zip |
Merge pull request #1630 from antonio-nino-diaz-arm/an/fix-console
pl011: cnds: cbmem: 16550: Fix comments
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/arm/pl011/aarch32/pl011_console.S | 5 | ||||
-rw-r--r-- | drivers/arm/pl011/aarch64/pl011_console.S | 5 | ||||
-rw-r--r-- | drivers/cadence/uart/aarch64/cdns_console.S | 5 | ||||
-rw-r--r-- | drivers/coreboot/cbmem_console/aarch64/cbmem_console.S | 4 | ||||
-rw-r--r-- | drivers/ti/uart/aarch64/16550_console.S | 5 |
5 files changed, 14 insertions, 10 deletions
diff --git a/drivers/arm/pl011/aarch32/pl011_console.S b/drivers/arm/pl011/aarch32/pl011_console.S index b7892e12e..841ea446c 100644 --- a/drivers/arm/pl011/aarch32/pl011_console.S +++ b/drivers/arm/pl011/aarch32/pl011_console.S @@ -89,8 +89,9 @@ endfunc console_pl011_core_init .globl console_pl011_register /* ------------------------------------------------------- - * init console_pl011_register(console_pl011_t *console, - * uintptr_t base, uint32_t clk, uint32_t baud) + * int console_pl011_register(uintptr_t baseaddr, + * uint32_t clock, uint32_t baud, + * console_pl011_t *console); * Function to initialize and register a new PL011 * console. Storage passed in for the console struct * *must* be persistent (i.e. not from the stack). diff --git a/drivers/arm/pl011/aarch64/pl011_console.S b/drivers/arm/pl011/aarch64/pl011_console.S index 448501a22..d6a2d6b89 100644 --- a/drivers/arm/pl011/aarch64/pl011_console.S +++ b/drivers/arm/pl011/aarch64/pl011_console.S @@ -85,8 +85,9 @@ endfunc console_pl011_core_init .globl console_pl011_register /* ----------------------------------------------- - * int console_pl011_register(console_pl011_t *console, - uintptr_t base, uint32_t clk, uint32_t baud) + * int console_pl011_register(uintptr_t baseaddr, + * uint32_t clock, uint32_t baud, + * console_pl011_t *console); * Function to initialize and register a new PL011 * console. Storage passed in for the console struct * *must* be persistent (i.e. not from the stack). diff --git a/drivers/cadence/uart/aarch64/cdns_console.S b/drivers/cadence/uart/aarch64/cdns_console.S index 673263197..71359a6d2 100644 --- a/drivers/cadence/uart/aarch64/cdns_console.S +++ b/drivers/cadence/uart/aarch64/cdns_console.S @@ -54,8 +54,9 @@ endfunc console_cdns_core_init .globl console_cdns_register /* ----------------------------------------------- - * int console_cdns_register(console_cdns_t *console, - uintptr_t base, uint32_t clk, uint32_t baud) + * int console_cdns_register(uint64_t baseaddr, + * uint32_t clock, uint32_t baud, + * console_cdns_t *console); * Function to initialize and register a new CDNS * console. Storage passed in for the console struct * *must* be persistent (i.e. not from the stack). diff --git a/drivers/coreboot/cbmem_console/aarch64/cbmem_console.S b/drivers/coreboot/cbmem_console/aarch64/cbmem_console.S index 2fc060334..184853d9d 100644 --- a/drivers/coreboot/cbmem_console/aarch64/cbmem_console.S +++ b/drivers/coreboot/cbmem_console/aarch64/cbmem_console.S @@ -19,8 +19,8 @@ .globl console_cbmc_flush /* ----------------------------------------------- - * int console_cbmc_register(console_cbmc_t *console, - * uintptr_t base) + * int console_cbmc_register(uintptr_t base, + * console_cbmc_t *console); * Registers a new CBMEM console instance. Reads * the size field from the buffer header structure * and stores it in our console_cbmc_t struct, so diff --git a/drivers/ti/uart/aarch64/16550_console.S b/drivers/ti/uart/aarch64/16550_console.S index d46fa6119..0f9a9d576 100644 --- a/drivers/ti/uart/aarch64/16550_console.S +++ b/drivers/ti/uart/aarch64/16550_console.S @@ -87,8 +87,9 @@ endfunc console_16550_core_init .globl console_16550_register /* ----------------------------------------------- - * int console_16550_register(console_16550_t *console, - uintptr_t base, uint32_t clk, uint32_t baud) + * int console_16550_register(uintptr_t baseaddr, + * uint32_t clock, uint32_t baud, + * console_16550_t *console); * Function to initialize and register a new 16550 * console. Storage passed in for the console struct * *must* be persistent (i.e. not from the stack). |