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=-2.0 required=3.0 tests=FREEMAIL_FORGED_FROMDOMAIN, FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 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 255ABC43603 for ; Tue, 10 Dec 2019 15:12:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 045142073B for ; Tue, 10 Dec 2019 15:12:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727223AbfLJPML (ORCPT ); Tue, 10 Dec 2019 10:12:11 -0500 Received: from ns.iliad.fr ([212.27.33.1]:35636 "EHLO ns.iliad.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727518AbfLJPMK (ORCPT ); Tue, 10 Dec 2019 10:12:10 -0500 Received: from ns.iliad.fr (localhost [127.0.0.1]) by ns.iliad.fr (Postfix) with ESMTP id 2CE1E20714; Tue, 10 Dec 2019 16:12:08 +0100 (CET) Received: from [192.168.108.51] (freebox.vlq16.iliad.fr [213.36.7.13]) by ns.iliad.fr (Postfix) with ESMTP id 085FF20425; Tue, 10 Dec 2019 16:12:08 +0100 (CET) Subject: Re: [PATCH 08/10] tty: serial: samsung_tty: use 'unsigned int' not 'unsigned' To: Greg Kroah-Hartman , linux-serial Cc: Jiri Slaby , Linux ARM , LKML References: <20191210143706.3928480-1-gregkh@linuxfoundation.org> <20191210143706.3928480-8-gregkh@linuxfoundation.org> From: Marc Gonzalez Message-ID: Date: Tue, 10 Dec 2019 16:12:07 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.1 MIME-Version: 1.0 In-Reply-To: <20191210143706.3928480-8-gregkh@linuxfoundation.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP ; ns.iliad.fr ; Tue Dec 10 16:12:08 2019 +0100 (CET) Sender: linux-serial-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-serial@vger.kernel.org [ Trim recipients list ] On 10/12/2019 15:37, Greg Kroah-Hartman wrote: > The function uart_console_write() expects an unsigned int, so use that > variable type, not 'unsigned', which is generally frowned apon in the > kernel now. "frowned upon" Wait, what?! 'unsigned' and 'unsigned int' are the same type, if I remember my C lessons correctly. Is this a uniformization issue? Regards.