From patchwork Mon Dec 30 06:53:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: wang yanqing X-Patchwork-Id: 3417751 Return-Path: X-Original-To: patchwork-linux-fbdev@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 1A7A49F3E0 for ; Mon, 30 Dec 2013 06:54:15 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F2E88200F2 for ; Mon, 30 Dec 2013 06:54:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 20F31200F0 for ; Mon, 30 Dec 2013 06:54:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751276Ab3L3GyN (ORCPT ); Mon, 30 Dec 2013 01:54:13 -0500 Received: from mail-pd0-f171.google.com ([209.85.192.171]:37985 "EHLO mail-pd0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751230Ab3L3GyN (ORCPT ); Mon, 30 Dec 2013 01:54:13 -0500 Received: by mail-pd0-f171.google.com with SMTP id z10so10995465pdj.16 for ; Sun, 29 Dec 2013 22:54:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=Ee4bstgwXYi0x186Ec37BI4rYvXVErTQTiRRyydmyyk=; b=bc6Kmib7tURwcebOA1t5f8YtvVbqrNDlAyi7YMhRJNIU2fPqLY3JmI/va4RK3feMv7 T61SR9xnZXJX1e2yxLPB1Z2B/oFAht5yW0lzeT149hc+KlaEX/AwD4Vg1cAi1ujLZ0FU c8iDZy6SJIxhx07jEXwO1Ie8e1jWhvWr7ICDanXJ6Hbi0TAJRuFeauP9lGej/3N6Qiv/ zmew5wQK6XkrjvymD56dQUci1TResHHavuc4TPxTbNPipRdicdlwANZpPgkbvQ6kM4T7 Vc+0jGTr41434eR8f3XKr0xXMWnDqkXhZIA/N6NilD+IFc6NC6ie+pFNOtEeQwKyDjGm onhg== X-Received: by 10.68.106.130 with SMTP id gu2mr66336802pbb.59.1388386452477; Sun, 29 Dec 2013 22:54:12 -0800 (PST) Received: from udknight.localhost ([36.192.185.148]) by mx.google.com with ESMTPSA id ko10sm66840971pbd.38.2013.12.29.22.54.09 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 29 Dec 2013 22:54:11 -0800 (PST) Received: from udknight.localhost (udknight.localhost [127.0.0.1]) by udknight.localhost (8.14.4/8.14.4) with ESMTP id rBU6r9w5006657; Mon, 30 Dec 2013 14:53:19 +0800 Received: (from root@localhost) by udknight.localhost (8.14.4/8.14.4/Submit) id rBU6r4aC006656; Mon, 30 Dec 2013 14:53:04 +0800 Date: Mon, 30 Dec 2013 14:53:03 +0800 From: Wang YanQing To: plagnioj@jcrosoft.com Cc: tomi.valkeinen@ti.com, airlied@redhat.com, gregkh@linuxfoundation.org, akpm@linux-foundation.org, linux-fbdev@vger.kernel.org Subject: [PATCH] fonts:Kconfig: fix default enable FONT_8x8 and FONT_8x16 at the same time Message-ID: <20131230065303.GA6640@udknight> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP FONT_8x8 and FONT_8x16 have the same default value line: "default y if !SPARC && !FONTS" I test run "make defconfig" for x86 will enable FONT_8x8 and FONT_8x16 at the same time. This patch fix it, because FONT_AUTOSELECT choice FONT_8x16, so I decide to disable FONT_8x8, this patch will reduce size of kernel. Signed-off-by: Wang YanQing --- lib/fonts/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/fonts/Kconfig b/lib/fonts/Kconfig index 34fd931..11d3758 100644 --- a/lib/fonts/Kconfig +++ b/lib/fonts/Kconfig @@ -23,7 +23,6 @@ config FONTS config FONT_8x8 bool "VGA 8x8 font" if FONTS depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE - default y if !SPARC && !FONTS help This is the "high resolution" font for the VGA frame buffer (the one provided by the text console 80x50 (and higher) modes).