aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge/dynload
diff options
context:
space:
mode:
authorRene Sapiens <rene.sapiens@ti.com>2010-07-09 22:24:09 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 13:45:37 -0400
commitc8c1ad8ce317c1e213db47f094d6eee8dec7d280 (patch)
tree823b8d5384e1d5297af53f568f6a588cecd040a6 /drivers/staging/tidspbridge/dynload
parent5a09ddeae940ceea68a8b2dada71bc0cc609c894 (diff)
staging: ti dspbridge: make variables in prototypes match within functions definitions
This patch renames the variables in the parameter lists and in the function definitions to make them match. Signed-off-by: Rene Sapiens <rene.sapiens@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/tidspbridge/dynload')
-rw-r--r--drivers/staging/tidspbridge/dynload/reloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/tidspbridge/dynload/reloc.c b/drivers/staging/tidspbridge/dynload/reloc.c
index 316a38c2a1f..ec59777dc06 100644
--- a/drivers/staging/tidspbridge/dynload/reloc.c
+++ b/drivers/staging/tidspbridge/dynload/reloc.c
@@ -162,7 +162,7 @@ static const u8 c60_scale[SCALE_MASK + 1] = {
162 * Performs the specified relocation operation 162 * Performs the specified relocation operation
163 ************************************************************************* */ 163 ************************************************************************* */
164void dload_relocate(struct dload_state *dlthis, tgt_au_t * data, 164void dload_relocate(struct dload_state *dlthis, tgt_au_t * data,
165 struct reloc_record_t *rp, bool * tramps_genereted, 165 struct reloc_record_t *rp, bool *tramps_generated,
166 bool second_pass) 166 bool second_pass)
167{ 167{
168 rvalue val, reloc_amt, orig_val = 0; 168 rvalue val, reloc_amt, orig_val = 0;
@@ -470,7 +470,7 @@ void dload_relocate(struct dload_state *dlthis, tgt_au_t * data,
470 dlthis->image_offset + 470 dlthis->image_offset +
471 rp->vaddr); 471 rp->vaddr);
472 } else 472 } else
473 *tramps_genereted = true; 473 *tramps_generated = true;
474 } else { 474 } else {
475 dload_error(dlthis, "Relocation value " 475 dload_error(dlthis, "Relocation value "
476 FMT_UI32 " overflows %d bits in %s" 476 FMT_UI32 " overflows %d bits in %s"