Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/radeon: fix spelling typos

Found some typos while exploring radeon code.

Signed-off-by: Alexandre Demers <alexandre.f.demers@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Alexandre Demers and committed by
Alex Deucher
edbf0f30 ce43abd7

+5 -5
+3 -3
drivers/gpu/drm/radeon/radeon_device.c
··· 530 530 * @mc: memory controller structure holding memory informations 531 531 * @base: base address at which to put VRAM 532 532 * 533 - * Function will place try to place VRAM at base address provided 533 + * Function will try to place VRAM at base address provided 534 534 * as parameter (which is so far either PCI aperture address or 535 535 * for IGP TOM base address). 536 536 * ··· 557 557 * 558 558 * Note 3: when limiting vram it's safe to overwritte real_vram_size because 559 559 * we are not in case where real_vram_size is inferior to mc_vram_size (ie 560 - * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu 560 + * not affected by bogus hw of Novell bug 204882 + along with lots of ubuntu 561 561 * ones) 562 562 * 563 563 * Note 4: IGP TOM addr should be the same as the aperture addr, we don't ··· 594 594 * @rdev: radeon device structure holding all necessary informations 595 595 * @mc: memory controller structure holding memory informations 596 596 * 597 - * Function will place try to place GTT before or after VRAM. 597 + * Function will try to place GTT before or after VRAM. 598 598 * 599 599 * If GTT size is bigger than space left then we ajust GTT size. 600 600 * Thus function will never fails.
+1 -1
drivers/gpu/drm/radeon/radeon_fence.c
··· 840 840 } 841 841 radeon_fence_write(rdev, atomic64_read(&rdev->fence_drv[ring].last_seq), ring); 842 842 rdev->fence_drv[ring].initialized = true; 843 - dev_info(rdev->dev, "fence driver on ring %d use gpu addr 0x%016llx\n", 843 + dev_info(rdev->dev, "fence driver on ring %d uses gpu addr 0x%016llx\n", 844 844 ring, rdev->fence_drv[ring].gpu_addr); 845 845 return 0; 846 846 }
+1 -1
drivers/gpu/drm/radeon/si.c
··· 6198 6198 6199 6199 if (wptr & RB_OVERFLOW) { 6200 6200 wptr &= ~RB_OVERFLOW; 6201 - /* When a ring buffer overflow happen start parsing interrupt 6201 + /* When a ring buffer overflow happens, start parsing interrupts 6202 6202 * from the last not overwritten vector (wptr + 16). Hopefully 6203 6203 * this should allow us to catchup. 6204 6204 */