From patchwork Sun Feb 20 20:50:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Henry Nestler X-Patchwork-Id: 576081 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p1KKooNS031804 for ; Sun, 20 Feb 2011 20:51:00 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754605Ab1BTUvA (ORCPT ); Sun, 20 Feb 2011 15:51:00 -0500 Received: from mail-fx0-f46.google.com ([209.85.161.46]:55422 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753468Ab1BTUu7 (ORCPT ); Sun, 20 Feb 2011 15:50:59 -0500 Received: by fxm17 with SMTP id 17so886432fxm.19 for ; Sun, 20 Feb 2011 12:50:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=K331fkXUpzqNvNt9AMHqfTxs510QoVYBuxZbGERghGw=; b=vtMAw2HKKhhFUz2A5XSEDCTjni9kRIDpsBw8guSAvI3tYIqb3n1K9+0sBfdRZH1sK0 oKUIFfLCPOidKdtZ533bzmJTnWfWprrGA/ppx9QUwALjxDiNk6+4sBKmXku6unI/RN4u 6YtDg5snGHDOZF1HCBmmw3OLFyr9eiKpi/ems= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=I01y6bO3smQCvsbdymqhCJs/Jm1X09/PWgV5qDIBP2VkquhYhQWCnozr4gAk5YXgH8 5CXPv5wjibKtvC5K+dPPtA4V8FZ2+0WTsBih8uvw7uwTdEeM8WxsG7PKWIjWlYZk+k8i aMJOq+taQD2/mJEXuKJry0sFwdAd/bowlPWP4= Received: by 10.223.100.16 with SMTP id w16mr879992fan.85.1298235058251; Sun, 20 Feb 2011 12:50:58 -0800 (PST) Received: from [192.168.40.100] (77-20-146-155-dynip.superkabel.de [77.20.146.155]) by mx.google.com with ESMTPS id 21sm954747fav.17.2011.02.20.12.50.57 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 20 Feb 2011 12:50:57 -0800 (PST) Message-ID: <4D617EB0.3070705@henry.nestler.mail.gmail.com> Date: Sun, 20 Feb 2011 21:50:56 +0100 From: Henry Nestler User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:2.0b10pre) Gecko/20110125 Thunderbird/3.3a3pre MIME-Version: 1.0 To: linux-fbdev@vger.kernel.org Subject: Fwd: Re: [PATCH] fbcon: Bugfix soft cursor detection in Tile Blitting Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Sun, 20 Feb 2011 20:51:00 +0000 (UTC) diff --git a/drivers/video/console/tileblit.c b/drivers/video/console/tileblit.c index 0056a41..15e8e1a 100644 --- a/drivers/video/console/tileblit.c +++ b/drivers/video/console/tileblit.c @@ -83,7 +83,7 @@ static void tile_cursor(struct vc_data *vc, struct fb_info *info, int mode, int softback_lines, int fg, int bg) { struct fb_tilecursor cursor; - int use_sw = (vc->vc_cursor_type & 0x01); + int use_sw = (vc->vc_cursor_type & 0x10); cursor.sx = vc->vc_x; cursor.sy = vc->vc_y;