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=-10.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=unavailable 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 AEC03C433DB for ; Thu, 7 Jan 2021 15:18:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 80954233FD for ; Thu, 7 Jan 2021 15:18:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727850AbhAGPRr (ORCPT ); Thu, 7 Jan 2021 10:17:47 -0500 Received: from mail.kernel.org ([198.145.29.99]:58370 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726319AbhAGPRq (ORCPT ); Thu, 7 Jan 2021 10:17:46 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 41FCB233FD; Thu, 7 Jan 2021 15:17:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1610032625; bh=OEvqiP+gDwEWwvM3UqWJEjQhBLH3jpVEs1DYdZFggbU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=B1EwUH2arpyh/7/JvDquux0Pa/JnkFJ0Vm9eejLvMCHj/6lUaGKpDyEsBVtr/Aoqg +HWuyM/IZ1k8cQcB40zA3H6gYprE3/EBJ1csi8iZHb2HF35qqDNR5vkKfMvAlnpB+m 6/a+eEXOpgHv9hDAAaIgYTiA6ojTJG2PNRMO5Dh8= Date: Thu, 7 Jan 2021 16:18:25 +0100 From: Greg KH To: Jiri Slaby Cc: linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 01/12] vt: move set_leds to keyboard.c Message-ID: References: <20210105120239.28031-1-jslaby@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210105120239.28031-1-jslaby@suse.cz> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jan 05, 2021 at 01:02:28PM +0100, Jiri Slaby wrote: > set_leds and compute_shiftstate are called from a single place in vt.c. > Let's combine these two into vt_set_leds_compute_shiftstate. This allows > for making keyboard_tasklet local in the next patch. > > Signed-off-by: Jiri Slaby Overall this was: 29 files changed, 70 insertions(+), 333 deletions(-) nice! all now queued up, thanks for this work. greg k-h