From patchwork Thu Jun 23 15:46:27 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Riku Voipio X-Patchwork-Id: 2234 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 70FC323F7C for ; Thu, 23 Jun 2011 15:46:31 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id 3E950A18614 for ; Thu, 23 Jun 2011 15:46:31 +0000 (UTC) Received: by qyk30 with SMTP id 30so1432595qyk.11 for ; Thu, 23 Jun 2011 08:46:30 -0700 (PDT) Received: by 10.229.30.3 with SMTP id s3mr531676qcc.21.1308843990708; Thu, 23 Jun 2011 08:46:30 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.230.139 with SMTP id jm11cs22182qcb; Thu, 23 Jun 2011 08:46:30 -0700 (PDT) Received: by 10.14.44.80 with SMTP id m56mr1451185eeb.99.1308843989830; Thu, 23 Jun 2011 08:46:29 -0700 (PDT) Received: from mail-ew0-f50.google.com (mail-ew0-f50.google.com [209.85.215.50]) by mx.google.com with ESMTPS id g4si3092815eea.11.2011.06.23.08.46.28 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 23 Jun 2011 08:46:28 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.215.50 is neither permitted nor denied by best guess record for domain of riku.voipio@linaro.org) client-ip=209.85.215.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.215.50 is neither permitted nor denied by best guess record for domain of riku.voipio@linaro.org) smtp.mail=riku.voipio@linaro.org Received: by ewy10 with SMTP id 10so744093ewy.37 for ; Thu, 23 Jun 2011 08:46:28 -0700 (PDT) MIME-Version: 1.0 Received: by 10.14.127.4 with SMTP id c4mr1550948eei.131.1308843988017; Thu, 23 Jun 2011 08:46:28 -0700 (PDT) Received: by 10.213.8.78 with HTTP; Thu, 23 Jun 2011 08:46:27 -0700 (PDT) Date: Thu, 23 Jun 2011 18:46:27 +0300 Message-ID: Subject: fix kfgles on thumb2 kernels From: Riku Voipio To: Patch Tracking >From 277f90d71869682e97a80cbcfd9e522af44b105a Mon Sep 17 00:00:00 2001 From: Riku Voipio Date: Thu, 16 Jun 2011 15:22:43 +0300 Subject: [PATCH 10/12] fix kfgles on thumb2 kernels Kernels are not built with thumb interworking. Be removing explicit definition of of code size, the code will automatically be assembled as thumb/arm as needed. This is possible because the assembler code below is expressable both as thumb and arm code. Signed-off-by: Riku Voipio --- kfgles2/kfgles2_hcalls.S | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/kfgles2/kfgles2_hcalls.S b/kfgles2/kfgles2_hcalls.S index 4d669ee..ee92a29 100644 --- a/kfgles2/kfgles2_hcalls.S +++ b/kfgles2/kfgles2_hcalls.S @@ -10,7 +10,6 @@ */ .text -.code 32 .extern kfgles2_base_egl; -- 1.7.4.1