From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E60A8C07E85 for ; Tue, 11 Dec 2018 11:01:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id ADE662081B for ; Tue, 11 Dec 2018 11:01:55 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=nifty.com header.i=@nifty.com header.b="X2MiZ7U/" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org ADE662081B Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=socionext.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726769AbeLKLBy (ORCPT ); Tue, 11 Dec 2018 06:01:54 -0500 Received: from conuserg-11.nifty.com ([210.131.2.78]:37031 "EHLO conuserg-11.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726738AbeLKLBw (ORCPT ); Tue, 11 Dec 2018 06:01:52 -0500 Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-11.nifty.com with ESMTP id wBBB1C5v017210; Tue, 11 Dec 2018 20:01:26 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com wBBB1C5v017210 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1544526087; bh=E5748NZyl+90o6KcOmeB0jqh57but7eKhlAPYZZaCdo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=X2MiZ7U/GH8sihqbUev6Ry1nqri4gmPO9sE5AOQgLqDdeH52B+VWCBKHQJadeE41P HsessXnJS06PRG+NX24cUvKR2k86w1yNrn2BIDwlLreE8mQoOT++c2L8FMQVfJHK6t IoHkPkJqsdVHRhKnEYN8q77pQ9SXZuVuK/fbPVEyVdje0sjFstfwsnIWby3yJWF+yG aCRmc3IJUVPq7Fu10CDx+d8cLxxB7+yvQPQqKJQ+vzYoyFO1X2YcdcU4SYh6EL+Czp JsMmxjL4vNT0+y3bd3Z3CQvcuE9jJ5LfPFKJAe6LPj9312CQ/wNc49BlxTnpW3FjPn 1PGFDu1yapPrw== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Ulf Magnusson , linux-kernel@vger.kernel.org, Masahiro Yamada , Michal Simek Subject: [PATCH 20/27] microblaze: surround string default in Kconfig with double quotes Date: Tue, 11 Dec 2018 20:01:03 +0900 Message-Id: <1544526070-16690-21-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1544526070-16690-1-git-send-email-yamada.masahiro@socionext.com> References: <1544526070-16690-1-git-send-email-yamada.masahiro@socionext.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org I guess this is a constant value instead of a symbol. Signed-off-by: Masahiro Yamada --- I will apply this to my Kbuild tree because it is necessary for Kconfig clean-ups. arch/microblaze/Kconfig.platform | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/microblaze/Kconfig.platform b/arch/microblaze/Kconfig.platform index f7f1739..7361974 100644 --- a/arch/microblaze/Kconfig.platform +++ b/arch/microblaze/Kconfig.platform @@ -65,6 +65,6 @@ config XILINX_MICROBLAZE0_USE_FPU config XILINX_MICROBLAZE0_HW_VER string "Core version number" - default 7.10.d + default "7.10.d" endmenu -- 2.7.4