From patchwork Sat Jan 31 13:47:39 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hao X-Patchwork-Id: 435138 X-Patchwork-Delegate: michael@ellerman.id.au Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 570A51401DA for ; Sun, 1 Feb 2015 00:55:33 +1100 (AEDT) Received: from ozlabs.org (ozlabs.org [103.22.144.67]) by lists.ozlabs.org (Postfix) with ESMTP id 302531A13DF for ; Sun, 1 Feb 2015 00:55:33 +1100 (AEDT) X-Original-To: linuxppc-dev@lists.ozlabs.org Delivered-To: linuxppc-dev@lists.ozlabs.org Received: from mail-yh0-x22e.google.com (mail-yh0-x22e.google.com [IPv6:2607:f8b0:4002:c01::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 33D2B1A10C9 for ; Sun, 1 Feb 2015 00:48:46 +1100 (AEDT) Received: by mail-yh0-f46.google.com with SMTP id c41so12952446yho.5 for ; Sat, 31 Jan 2015 05:48:44 -0800 (PST) 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=7JRbUpnXZ5gJ1JIpNX3XGltFLaabbHrg6LAYgvBpKoo=; b=gvW+/EVVPOWQKP7nDQnhX7VhGnkSHvSK2Fj2gYvVv58FxsgXmFiI3XCAzdSVxhbmnu 4qlQtVabFEsD5ZGaBSZIe3v+nJkqgsFGBbnCr6tRFclivRNGsHPTe1obuggHNUhg6kJi KkftKCOHYII9aHigBXZiGdfDCFCYkEkAsYv7ktRGkGdyheaHfGFrccU7axZh/Z5WIqFr UCmDL1gi2y+6juoxq7EF9/ySdKZ43aGvwZVEd1YNpxdK6INB3unctZiv2XTG+wvoub+L kiiZ4XqvM2uzWRn0RtmfpyGI9eakOQGmkeRfjpfUSk5YTlHsG1EV0qKM3iC1TXsDInat vOTg== X-Received: by 10.236.216.3 with SMTP id f3mr5227852yhp.158.1422712124025; Sat, 31 Jan 2015 05:48:44 -0800 (PST) Received: from pek-khao-d1.corp.ad.wrs.com ([106.120.101.38]) by mx.google.com with ESMTPSA id z23sm8423995yhz.35.2015.01.31.05.48.40 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 31 Jan 2015 05:48:43 -0800 (PST) From: Kevin Hao To: linuxppc-dev@lists.ozlabs.org, linux-fbdev@vger.kernel.org Subject: [PATCH 09/15] fbdev: kconfig: replace PPC_OF with PPC Date: Sat, 31 Jan 2015 21:47:39 +0800 Message-Id: <1422712065-9403-10-git-send-email-haokexin@gmail.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1422712065-9403-1-git-send-email-haokexin@gmail.com> References: <1422712065-9403-1-git-send-email-haokexin@gmail.com> Cc: Kevin Hao , Tomi Valkeinen , Jean-Christophe Plagniol-Villard X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Sender: "Linuxppc-dev" The PPC_OF is a ppc specific option which is used to mean that the firmware device tree access functions are available. Since all the ppc platforms have a device tree, it is aways set to 'y' for ppc. So it makes no sense to keep a such option in the current kernel. Replace it with PPC. Signed-off-by: Kevin Hao --- drivers/video/fbdev/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/fbdev/Kconfig b/drivers/video/fbdev/Kconfig index 55161dd4b931..027f9b685b5b 100644 --- a/drivers/video/fbdev/Kconfig +++ b/drivers/video/fbdev/Kconfig @@ -479,7 +479,7 @@ config FB_ATARI config FB_OF bool "Open Firmware frame buffer device support" - depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI) + depends on (FB = y) && PPC && (!PPC_PSERIES || PCI) select FB_CFB_FILLRECT select FB_CFB_COPYAREA select FB_CFB_IMAGEBLIT