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=-1.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no 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 04223C3A59D for ; Fri, 16 Aug 2019 18:10:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BEF0B2086C for ; Fri, 16 Aug 2019 18:10:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1565979050; bh=fBQlqgxXYPI0RkjnntUMMTiPaFT42DbZYk7AS2AaI3M=; h=In-Reply-To:References:Subject:From:Cc:To:Date:List-ID:From; b=a28dN5o0p/4qkxzVKSHT/J5aZcdUC7GTPQIDWvxcxa1dICXJUKb19TKJURWZYIya+ i7efWgIyHAIXXhPwklq4j3B83WOhWct6hyO4witccQZP97nqg5hJqbJ71+2ramAMW7 NiNYzej8f7kO3NB780uUwRSSDynYcED/aoge+FB8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727548AbfHPSKu (ORCPT ); Fri, 16 Aug 2019 14:10:50 -0400 Received: from mail.kernel.org ([198.145.29.99]:36318 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727514AbfHPSKu (ORCPT ); Fri, 16 Aug 2019 14:10:50 -0400 Received: from kernel.org (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 630BE206C1; Fri, 16 Aug 2019 18:10:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1565979049; bh=fBQlqgxXYPI0RkjnntUMMTiPaFT42DbZYk7AS2AaI3M=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=krWHY1dunHLyUbvxAfCDNdlGP6QF/TAX1ZJ4C0TMr6MyKov9423pxkuVdAj9jTWJ6 bnoutNGfY9zTEK53glcupWVknQuVdpfrEZh04Nd87updB76f8v9pFctGN8votcfI5/ ILruZtwchp+7P8ds5SOZuE2tOmvJKdYtlciR87O0= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20190816095732.0ffea609@canb.auug.org.au> References: <20190816095732.0ffea609@canb.auug.org.au> Subject: Re: linux-next: build warning after merge of the clk tree From: Stephen Boyd Cc: Linux Next Mailing List , Linux Kernel Mailing List , Manivannan Sadhasivam To: Mike Turquette , Stephen Rothwell User-Agent: alot/0.8.1 Date: Fri, 16 Aug 2019 11:10:48 -0700 Message-Id: <20190816181049.630BE206C1@mail.kernel.org> Sender: linux-next-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-next@vger.kernel.org Quoting Stephen Rothwell (2019-08-15 16:57:32) > Hi all, >=20 > After merging the clk tree, today's linux-next build (x86_64 allmodconfig) > produced this warning: >=20 > drivers/clk/actions/owl-common.c: In function 'owl_clk_probe': > drivers/clk/actions/owl-common.c:71:24: warning: 'hw' may be used uniniti= alized in this function [-Wmaybe-uninitialized] > const char *name =3D hw->init->name; > ~~^~~~~~ >=20 > Introduced by commit >=20 > 20cac6d02815 ("clk: actions: Don't reference clk_init_data after regist= ration") >=20 > Clearly not a false positive. :-( >=20 Thanks. I fixed it now.