diff mbox series

fbdev: fixed typo in hw_bitblt_1 and hw_bitblt_2

Message ID 20240301113543.24312-1-a.burakov@rosalinux.ru
State New
Headers show
Series fbdev: fixed typo in hw_bitblt_1 and hw_bitblt_2 | expand

Commit Message

Aleksandr Burakov March 1, 2024, 11:35 a.m. UTC
There are some actions with value 'tmp' but 'dst_addr' is checked instead.
It is obvious that a copy-paste error was made here and the value
of variable 'tmp' should be checked here.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: f7018c213502 ("video: move fbdev to drivers/video/fbdev")
Signed-off-by: Aleksandr Burakov <a.burakov@rosalinux.ru>
---
 drivers/video/fbdev/via/accel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Helge Deller March 15, 2024, 9:06 a.m. UTC | #1
On 3/1/24 12:35, Aleksandr Burakov wrote:
> There are some actions with value 'tmp' but 'dst_addr' is checked instead.
> It is obvious that a copy-paste error was made here and the value
> of variable 'tmp' should be checked here.
>
> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>
> Fixes: f7018c213502 ("video: move fbdev to drivers/video/fbdev")
> Signed-off-by: Aleksandr Burakov <a.burakov@rosalinux.ru>

applied.
Thanks!
Helge


> ---
>   drivers/video/fbdev/via/accel.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/video/fbdev/via/accel.c b/drivers/video/fbdev/via/accel.c
> index 0a1bc7a4d785..1e04026f0809 100644
> --- a/drivers/video/fbdev/via/accel.c
> +++ b/drivers/video/fbdev/via/accel.c
> @@ -115,7 +115,7 @@ static int hw_bitblt_1(void __iomem *engine, u8 op, u32 width, u32 height,
>
>   	if (op != VIA_BITBLT_FILL) {
>   		tmp = src_mem ? 0 : src_addr;
> -		if (dst_addr & 0xE0000007) {
> +		if (tmp & 0xE0000007) {
>   			printk(KERN_WARNING "hw_bitblt_1: Unsupported source "
>   				"address %X\n", tmp);
>   			return -EINVAL;
> @@ -260,7 +260,7 @@ static int hw_bitblt_2(void __iomem *engine, u8 op, u32 width, u32 height,
>   		writel(tmp, engine + 0x18);
>
>   		tmp = src_mem ? 0 : src_addr;
> -		if (dst_addr & 0xE0000007) {
> +		if (tmp & 0xE0000007) {
>   			printk(KERN_WARNING "hw_bitblt_2: Unsupported source "
>   				"address %X\n", tmp);
>   			return -EINVAL;
diff mbox series

Patch

diff --git a/drivers/video/fbdev/via/accel.c b/drivers/video/fbdev/via/accel.c
index 0a1bc7a4d785..1e04026f0809 100644
--- a/drivers/video/fbdev/via/accel.c
+++ b/drivers/video/fbdev/via/accel.c
@@ -115,7 +115,7 @@  static int hw_bitblt_1(void __iomem *engine, u8 op, u32 width, u32 height,
 
 	if (op != VIA_BITBLT_FILL) {
 		tmp = src_mem ? 0 : src_addr;
-		if (dst_addr & 0xE0000007) {
+		if (tmp & 0xE0000007) {
 			printk(KERN_WARNING "hw_bitblt_1: Unsupported source "
 				"address %X\n", tmp);
 			return -EINVAL;
@@ -260,7 +260,7 @@  static int hw_bitblt_2(void __iomem *engine, u8 op, u32 width, u32 height,
 		writel(tmp, engine + 0x18);
 
 		tmp = src_mem ? 0 : src_addr;
-		if (dst_addr & 0xE0000007) {
+		if (tmp & 0xE0000007) {
 			printk(KERN_WARNING "hw_bitblt_2: Unsupported source "
 				"address %X\n", tmp);
 			return -EINVAL;