|
31 | 31 | /**
|
32 | 32 | * struct stedma40_platform_data - Configuration struct for the dma device.
|
33 | 33 | *
|
34 |
| - * @dev_tx: mapping between destination event line and io address |
35 |
| - * @dev_rx: mapping between source event line and io address |
36 | 34 | * @disabled_channels: A vector, ending with -1, that marks physical channels
|
37 | 35 | * that are for different reasons not available for the driver.
|
38 | 36 | * @soft_lli_chans: A vector, that marks physical channels will use LLI by SW
|
39 | 37 | * which avoids HW bug that exists in some versions of the controller.
|
40 |
| - * SoftLLI introduces relink overhead that could impact performace for |
| 38 | + * SoftLLI introduces relink overhead that could impact performance for |
41 | 39 | * certain use cases.
|
42 | 40 | * @num_of_soft_lli_chans: The number of channels that needs to be configured
|
43 | 41 | * to use SoftLLI.
|
@@ -184,7 +182,7 @@ static __maybe_unused u32 d40_backup_regs[] = {
|
184 | 182 |
|
185 | 183 | /*
|
186 | 184 | * since 9540 and 8540 has the same HW revision
|
187 |
| - * use v4a for 9540 or ealier |
| 185 | + * use v4a for 9540 or earlier |
188 | 186 | * use v4b for 8540 or later
|
189 | 187 | * HW revision:
|
190 | 188 | * DB8500ed has revision 0
|
@@ -411,7 +409,7 @@ struct d40_desc {
|
411 | 409 | *
|
412 | 410 | * @base: The virtual address of LCLA. 18 bit aligned.
|
413 | 411 | * @dma_addr: DMA address, if mapped
|
414 |
| - * @base_unaligned: The orignal kmalloc pointer, if kmalloc is used. |
| 412 | + * @base_unaligned: The original kmalloc pointer, if kmalloc is used. |
415 | 413 | * This pointer is only there for clean-up on error.
|
416 | 414 | * @pages: The number of pages needed for all physical channels.
|
417 | 415 | * Only used later for clean-up on error
|
@@ -1655,7 +1653,7 @@ static void dma_tasklet(struct tasklet_struct *t)
|
1655 | 1653 |
|
1656 | 1654 | return;
|
1657 | 1655 | check_pending_tx:
|
1658 |
| - /* Rescue manouver if receiving double interrupts */ |
| 1656 | + /* Rescue maneuver if receiving double interrupts */ |
1659 | 1657 | if (d40c->pending_tx > 0)
|
1660 | 1658 | d40c->pending_tx--;
|
1661 | 1659 | spin_unlock_irqrestore(&d40c->lock, flags);
|
@@ -3412,7 +3410,7 @@ static int __init d40_lcla_allocate(struct d40_base *base)
|
3412 | 3410 | base->lcla_pool.base = (void *)page_list[i];
|
3413 | 3411 | } else {
|
3414 | 3412 | /*
|
3415 |
| - * After many attempts and no succees with finding the correct |
| 3413 | + * After many attempts and no success with finding the correct |
3416 | 3414 | * alignment, try with allocating a big buffer.
|
3417 | 3415 | */
|
3418 | 3416 | dev_warn(base->dev,
|
|
0 commit comments