From mboxrd@z Thu Jan 1 00:00:00 1970 From: Srinivas Kandagatla Subject: Re: [RFC PATCH 2/2] tty:msm_serial: Do not reset IP if we use bootconsole Date: Tue, 10 Jun 2014 15:37:23 +0100 Message-ID: <53971823.30103@linaro.org> References: <1402410678-12931-1-git-send-email-srinivas.kandagatla@linaro.org> <1402410732-13021-1-git-send-email-srinivas.kandagatla@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mail-we0-f181.google.com ([74.125.82.181]:46248 "EHLO mail-we0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750777AbaFJOh1 (ORCPT ); Tue, 10 Jun 2014 10:37:27 -0400 Received: by mail-we0-f181.google.com with SMTP id q59so2244177wes.26 for ; Tue, 10 Jun 2014 07:37:26 -0700 (PDT) In-Reply-To: <1402410732-13021-1-git-send-email-srinivas.kandagatla@linaro.org> Sender: linux-arm-msm-owner@vger.kernel.org List-Id: linux-arm-msm@vger.kernel.org To: linux-arm-msm@vger.kernel.org Cc: agross@codeaurora.org On 10/06/14 15:32, Srinivas Kandagatla wrote: > + * do not reset if we are the boot console > + * can result in a lockup from bootconsole > + */ > + if (have_boot_console()) > + msm_reset(port); Oops.. I think I sent a wrong changeset I this patch... this should be. if (!have_boot_console()) msm_reset(port); Will fix it in next version..