Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp2059794ybv; Thu, 6 Feb 2020 15:10:05 -0800 (PST) X-Google-Smtp-Source: APXvYqw/NZDCP0IUht6xCldYY/9+tNw198Frrrsye2l5rmvapKBwFHsBwWaDbzXad9ToCBDuHvUi X-Received: by 2002:a54:4e96:: with SMTP id c22mr129387oiy.110.1581030604915; Thu, 06 Feb 2020 15:10:04 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1581030604; cv=none; d=google.com; s=arc-20160816; b=b1vS2qZpnFBySka/jucrWRUEItir8RgSRRKRjhXOgquMTv8e/kOK6FIcgp4EdT+ZI+ I6z84B5UUM2wHjkd5k9YXmSNZ8xRJai2nnr44oZyWBi0phaPGQzVtO+9qH0qjWgauM0V FSzYSnHFBX67ROsOZAfXSQ1oGI8a6gM6PpRjlDbpfZZ4BXpaA5k6bUyCRBUQ/ucvfH85 nawGU8npzp9L5rzJrQC/s2RUueyaA3uE6rtIPltJO1xThUTilfIU6eoF6FI3y1vjrMkJ m26U5g2MQ3PSNN4rwz5BkxsS2EkzMiKBWqNZgF88Xihas8J25PqYbbSoQmAdVq0dGyNa GzHQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:date:content-transfer-encoding :mime-version:subject:from:references:in-reply-to:message-id:cc:to; bh=0OO6sUhDnjDTc5XMcEfHn0d9h3pJ1oUu4x4stox3wh4=; b=Ycroqd47GCI4R5aXa/O3m2XHvvXlGTbS/WCYT6R8keFO7kQyOB4lLBq0C7H0oMYTqs 5AF+51HG43h7JHvLGfdl+ygX6u9vZj2SZ82edBcavBztcub28jTx91EPVqKrQ3LzqRyX rLjNvASd3eSnj4C5msxwRXCq2uLs2QPx+lWBdltxnUrpfGVqyXF2NGRKbxGeTLaT+guu aM2eeeu5mZyqI8l+CAkLLQxwec1lzqo57RPTcAOrSpcL1OQk7yrIut1Ue6dcdda0192f z9VSlNHB2q2W9t8n2joXgpV9Qu+GPZILW2WD8+KoRsdOK9KActqsYo2FwbD4qArdTxIH eaRw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id x186si2755297oig.209.2020.02.06.15.09.52; Thu, 06 Feb 2020 15:10:04 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727481AbgBFXHB (ORCPT + 99 others); Thu, 6 Feb 2020 18:07:01 -0500 Received: from kvm5.telegraphics.com.au ([98.124.60.144]:45232 "EHLO kvm5.telegraphics.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726509AbgBFXGy (ORCPT ); Thu, 6 Feb 2020 18:06:54 -0500 Received: by kvm5.telegraphics.com.au (Postfix, from userid 502) id 0335E29A97; Thu, 6 Feb 2020 18:06:53 -0500 (EST) To: Ralf Baechle , Paul Burton , James Hogan Cc: Thomas Bogendoerfer , =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org, "Bartlomiej Zolnierkiewicz" , dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org Message-Id: <5504c0c416525ed8c7b8440e5f9971f2a7b59f28.1581030073.git.fthain@telegraphics.com.au> In-Reply-To: References: From: Finn Thain Subject: [PATCH v2 1/3] fbdev/g364fb: Fix build failure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Date: Fri, 07 Feb 2020 10:01:13 +1100 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch resolves these compiler errors and warnings -- CC drivers/video/fbdev/g364fb.o drivers/video/fbdev/g364fb.c: In function 'g364fb_cursor': drivers/video/fbdev/g364fb.c:137:9: error: 'x' undeclared (first use in this function) drivers/video/fbdev/g364fb.c:137:9: note: each undeclared identifier is reported only once for each function it appears in drivers/video/fbdev/g364fb.c:137:7: error: implicit declaration of function 'fontwidth' [-Werror=implicit-function-declaration] drivers/video/fbdev/g364fb.c:137:23: error: 'p' undeclared (first use in this function) drivers/video/fbdev/g364fb.c:137:38: error: 'y' undeclared (first use in this function) drivers/video/fbdev/g364fb.c:137:7: error: implicit declaration of function 'fontheight' [-Werror=implicit-function-declaration] drivers/video/fbdev/g364fb.c: In function 'g364fb_init': drivers/video/fbdev/g364fb.c:233:24: error: 'fbvar' undeclared (first use in this function) drivers/video/fbdev/g364fb.c:234:24: error: 'xres' undeclared (first use in this function) drivers/video/fbdev/g364fb.c:201:14: warning: unused variable 'j' [-Wunused-variable] drivers/video/fbdev/g364fb.c:197:25: warning: unused variable 'pal_ptr' [-Wunused-variable] The MIPS Magnum framebuffer console now works when tested in QEMU. Cc: Bartlomiej Zolnierkiewicz Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Finn Thain --- drivers/video/fbdev/g364fb.c | 29 +++-------------------------- 1 file changed, 3 insertions(+), 26 deletions(-) diff --git a/drivers/video/fbdev/g364fb.c b/drivers/video/fbdev/g364fb.c index 845b79da2a7c..05837a3b985c 100644 --- a/drivers/video/fbdev/g364fb.c +++ b/drivers/video/fbdev/g364fb.c @@ -108,7 +108,6 @@ static int g364fb_pan_display(struct fb_var_screeninfo *var, static int g364fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, u_int transp, struct fb_info *info); -static int g364fb_cursor(struct fb_info *info, struct fb_cursor *cursor); static int g364fb_blank(int blank, struct fb_info *info); static const struct fb_ops g364fb_ops = { @@ -119,28 +118,8 @@ static const struct fb_ops g364fb_ops = { .fb_fillrect = cfb_fillrect, .fb_copyarea = cfb_copyarea, .fb_imageblit = cfb_imageblit, - .fb_cursor = g364fb_cursor, }; -int g364fb_cursor(struct fb_info *info, struct fb_cursor *cursor) -{ - - switch (cursor->enable) { - case CM_ERASE: - *(unsigned int *) CTLA_REG |= CURS_TOGGLE; - break; - - case CM_MOVE: - case CM_DRAW: - *(unsigned int *) CTLA_REG &= ~CURS_TOGGLE; - *(unsigned int *) CURS_POS_REG = - ((x * fontwidth(p)) << 12) | ((y * fontheight(p)) - - info->var.yoffset); - break; - } - return 0; -} - /* * Pan or Wrap the Display * @@ -194,11 +173,9 @@ static int g364fb_setcolreg(u_int regno, u_int red, u_int green, */ int __init g364fb_init(void) { - volatile unsigned int *pal_ptr = - (volatile unsigned int *) CLR_PAL_REG; volatile unsigned int *curs_pal_ptr = (volatile unsigned int *) CURS_PAL_REG; - int mem, i, j; + int mem, i; if (fb_get_options("g364fb", NULL)) return -ENODEV; @@ -230,8 +207,8 @@ int __init g364fb_init(void) */ *(unsigned short *) (CURS_PAT_REG + 14 * 64) = 0xffff; *(unsigned short *) (CURS_PAT_REG + 15 * 64) = 0xffff; - fb_var.xres_virtual = fbvar.xres; - fb_fix.line_length = (xres / 8) * fb_var.bits_per_pixel; + fb_var.xres_virtual = fb_var.xres; + fb_fix.line_length = fb_var.xres_virtual * fb_var.bits_per_pixel / 8; fb_fix.smem_start = 0x40000000; /* physical address */ /* get size of video memory; this is special for the JAZZ hardware */ mem = (r4030_read_reg32(JAZZ_R4030_CONFIG) >> 8) & 3; -- 2.24.1