From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932858AbbELOrC (ORCPT ); Tue, 12 May 2015 10:47:02 -0400 Received: from mout.kundenserver.de ([212.227.17.10]:54259 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932375AbbELOq7 (ORCPT ); Tue, 12 May 2015 10:46:59 -0400 From: Arnd Bergmann To: Hans Ulli Kroll Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/1] ARM:Gemini:Fix compiler warning due wrong data type. Date: Tue, 12 May 2015 16:46:57 +0200 Message-ID: <3887800.kgFSO5Stek@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <1431360791-11681-1-git-send-email-ulli.kroll@googlemail.com> References: <1431360791-11681-1-git-send-email-ulli.kroll@googlemail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:wAkun/RW488vU8j48cJjwrHsbNmeRmmCwvEFy0IPd+uYBaY2YfZ bC5NBvRrM5vH/GqkpeTp4BtHLVtaVWnHpthNpA2qMxTgyoZLOioiquaFyFT7lISzFztmkxQ fsfUdNnmvH+kNqRXAU27s/MbtTgsM8kTXb248myd9JK4oQnzGokXrXX1EXGTlf+JlNB7RNr ze6vVRfWaECa15I/bTbYQ== X-UI-Out-Filterresults: notjunk:1; Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Monday 11 May 2015 18:13:11 Hans Ulli Kroll wrote: > This patch fixes a compiler warning in gemini_restart() > issued by commit > > 7b6d864b48d95e6ea1df7df64475b9cb9616dcf9 > reboot:arm: reboot_mode changes from char to enum reboot_mode. > > Signed-off-by: Hans Ulli Kroll Applied to the fixes branch, with a slightly updated commit message: Author: Hans Ulli Kroll Date: Mon May 11 18:13:11 2015 +0200 ARM: gemini: fix compiler warning due wrong data type This patch fixes a compiler warning in gemini_restart() issued by commit 7b6d864b48d9 ("reboot:arm: reboot_mode changes from char to enum reboot_mode"). arch/arm/mach-gemini/board-rut1xx.c:93:2: warning: initialization from incompatible pointer type The warning is harmless, and the patch does not need to be backported to stable kernels. Fixes: 7b6d864b48d ("reboot:arm: reboot_mode changes from char to enum reboot_mode.") Signed-off-by: Hans Ulli Kroll Signed-off-by: Arnd Bergmann Note the exact format of the subject line (with spaces after ':', and the 'Fixes' tag at the Signed-off-by line. Arnd