From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 13AA4142E83; Mon, 23 Feb 2026 14:16:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771856162; cv=none; b=SYZ09klEllqS6/yoAi10mF+6Gv6SP185Hqzm5cPixlTTi+uJFxNKYEyGFLy09hiL62CUt5wmnL7sRx0DqHL0jsslegNYPA9/RBYAjKGo/5eX76Uwrxb2nKIZuVhXX8PQvvhv5yfipVwcCKoULHiK2jhPoKMVeISV+XFo6lZgRr8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771856162; c=relaxed/simple; bh=WHLPgsZ3iTR06FdZfStKSAY8kzbHFKWMuFf6f3gy5VE=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=HVD5kK0v6It+cSlizVElGoaCeT1St2oBoAmLc39a2nTrGpRyZkoWLOxJA6YtT0SoAAko/QcIJ3UfSnPLWOEAErSZCqYjodHoPglISAPOlA9h5FZsIeQnp28Lsp/IIujFBkXFCI/xmi+uETd/v4Zjp/YI9YGV6MpEzbjmrVzw2o4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=naWM1Sgy; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="naWM1Sgy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3F3B8C116C6; Mon, 23 Feb 2026 14:15:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1771856161; bh=WHLPgsZ3iTR06FdZfStKSAY8kzbHFKWMuFf6f3gy5VE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=naWM1SgyqPjr3OWon7WQly9YM8zA0FzEyWlDMSU+nr1vKqYPR//8mpxAKAisyJSMc TQG+xnUxiFJFeQElflaKc69BVJGT/GR8ivWZVcjFcV4mDX2cZkwZAQzHZC8HNlP/iw pSkGX9+S1iJKtEwp/5+wN1695PzGccGP3jARwWGY= Date: Mon, 23 Feb 2026 15:13:35 +0100 From: Greg KH To: Shreyas Ravi Cc: sudipm.mukherjee@gmail.com, teddy.wang@siliconmotion.com, linux-fbdev@vger.kernel.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 2/2] staging: sm750fb: remove Hungarian notation prefixes Message-ID: <2026022316-subtype-hurdle-8b18@gregkh> References: <2026020842-litigator-flatworm-65d0@gregkh> <20260208184344.657617-1-shreyasravi320@gmail.com> <20260208184344.657617-2-shreyasravi320@gmail.com> Precedence: bulk X-Mailing-List: linux-fbdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260208184344.657617-2-shreyasravi320@gmail.com> On Sun, Feb 08, 2026 at 10:43:44AM -0800, Shreyas Ravi wrote: > Remove Hungarian notation prefixes from variable names to comply > with kernel coding style. > > No functional changes. > > Signed-off-by: Shreyas Ravi > --- > Changes in v4: > - Fix merge conflicts (forgot to do in v3) > > Changes in v3: > - Added changelog (was missing in v2) > > Changes in v2: > - Split original patch into two patches per Greg's feedback > - This patch addresses Hungarian prefix removal > --- > drivers/staging/sm750fb/sm750.c | 22 ++++++------ > drivers/staging/sm750fb/sm750.h | 6 ++-- > drivers/staging/sm750fb/sm750_accel.c | 48 +++++++++++++-------------- > drivers/staging/sm750fb/sm750_accel.h | 2 +- > drivers/staging/sm750fb/sm750_hw.c | 20 +++++------ > 5 files changed, 49 insertions(+), 49 deletions(-) > > diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c > index 1ed7ff57c142..afcfc9e6c207 100644 > --- a/drivers/staging/sm750fb/sm750.c > +++ b/drivers/staging/sm750fb/sm750.c > @@ -624,27 +624,27 @@ static int sm750fb_set_drv(struct lynxfb_par *par) > output->paths = sm750_pnc; > crtc->channel = sm750_primary; > crtc->o_screen = 0; > - crtc->v_screen = sm750_dev->p_v_mem; > + crtc->v_screen = sm750_dev->v_mem; You are fixing up your patch 1 of this series, why not just do it properly the first time? thanks, greg k-h