From patchwork Thu Jun 18 14:47:52 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre Courbot X-Patchwork-Id: 486336 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 7FF0D1401E7 for ; Fri, 19 Jun 2015 00:48:45 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=w2bEZe9M; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932520AbbFROsp (ORCPT ); Thu, 18 Jun 2015 10:48:45 -0400 Received: from mail-pd0-f181.google.com ([209.85.192.181]:33561 "EHLO mail-pd0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932478AbbFROso (ORCPT ); Thu, 18 Jun 2015 10:48:44 -0400 Received: by pdjn11 with SMTP id n11so68321822pdj.0 for ; Thu, 18 Jun 2015 07:48:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=cB2MNZlL/VHwmX+9D9ClHUCpA2F0LQUDUt+WlfjuwFI=; b=w2bEZe9MIThs4Cal315sDK8GtNYFkcwswx0jXmxe8miSuSBWTxA0GS2Lj2s9b2VCyU lDYh6QjiTqzpKwTB4Fwup9u2kTC0yCJiNKgvlSvDyShPERMEVIJSjph+dV2N8CDuclkr z4ycKpCGvDzs+fWvKqo+6fV6nKIsNxvIiezXgl4ucwrXFIijqDZ+JUYQBuL7VF719Nyf roeT2PHxGbIj/kmePnv6m+C7MiiowTTNhqMjANTiSg2DrTMJzgwzPJEQWfYADnUqM4M8 SKrTNw7IsrSWT2i2r1FxnR7cJA6ABHLiNcXFeYcgXNuzNIy/H8Iap7wbeBUc29a7F5pq ypUg== X-Received: by 10.68.224.166 with SMTP id rd6mr22023977pbc.11.1434638923709; Thu, 18 Jun 2015 07:48:43 -0700 (PDT) Received: from aramis.localdomain (softbank126227184005.bbtec.net. [126.227.184.5]) by mx.google.com with ESMTPSA id af1sm8396374pad.34.2015.06.18.07.48.40 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 18 Jun 2015 07:48:42 -0700 (PDT) From: Alexandre Courbot X-Google-Original-From: Alexandre Courbot To: Ben Skeggs , nouveau@lists.freedesktop.org, Andy Ritger , Aaron Plattner , Allen Martin , Ken Adams , Terje Bergstrom Cc: linux-tegra@vger.kernel.org, dri-devel@lists.freedesktop.org, gnurou@gmail.com, Alexandre Courbot Subject: [PATCH 6/6] platform: recognize GM20B Date: Thu, 18 Jun 2015 23:47:52 +0900 Message-Id: <1434638872-29061-7-git-send-email-acourbot@nvidia.com> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1434638872-29061-1-git-send-email-acourbot@nvidia.com> References: <1434638872-29061-1-git-send-email-acourbot@nvidia.com> Sender: linux-tegra-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-tegra@vger.kernel.org Allow the platform driver to recognize GM20B. Signed-off-by: Alexandre Courbot --- drm/nouveau/nouveau_platform.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drm/nouveau/nouveau_platform.c b/drm/nouveau/nouveau_platform.c index dcfbbfa..7a39d44 100644 --- a/drm/nouveau/nouveau_platform.c +++ b/drm/nouveau/nouveau_platform.c @@ -252,6 +252,7 @@ static int nouveau_platform_remove(struct platform_device *pdev) #if IS_ENABLED(CONFIG_OF) static const struct of_device_id nouveau_platform_match[] = { { .compatible = "nvidia,gk20a" }, + { .compatible = "nvidia,gm20b" }, { } };