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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0A29AC38A2D for ; Tue, 25 Oct 2022 10:48:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232403AbiJYKss (ORCPT ); Tue, 25 Oct 2022 06:48:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42130 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232395AbiJYKsj (ORCPT ); Tue, 25 Oct 2022 06:48:39 -0400 Received: from sonata.ens-lyon.org (sonata.ens-lyon.org [140.77.166.138]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3F78116EA20 for ; Tue, 25 Oct 2022 03:48:38 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by sonata.ens-lyon.org (Postfix) with ESMTP id 580732012C; Tue, 25 Oct 2022 12:48:36 +0200 (CEST) Received: from sonata.ens-lyon.org ([127.0.0.1]) by localhost (sonata.ens-lyon.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JvSzNkeAq4sF; Tue, 25 Oct 2022 12:48:36 +0200 (CEST) Received: from begin (nat-inria-interne-52-gw-01-bso.bordeaux.inria.fr [194.199.1.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by sonata.ens-lyon.org (Postfix) with ESMTPSA id 8438120119; Tue, 25 Oct 2022 12:48:34 +0200 (CEST) Received: from samy by begin with local (Exim 4.96) (envelope-from ) id 1onHU1-00946j-2N; Tue, 25 Oct 2022 12:48:33 +0200 Date: Tue, 25 Oct 2022 12:48:33 +0200 From: Samuel Thibault To: Eric Curtin Cc: gregkh@linuxfoundation.org, William Hubbs , Chris Brannon , Kirk Reiser , "open list:SPEAKUP CONSOLE SPEECH DRIVER" , open list Subject: Re: [PATCH] speakup: include types.h so u_char is a known type Message-ID: <20221025104833.io3spnxw7724vlhb@begin> Mail-Followup-To: Samuel Thibault , Eric Curtin , gregkh@linuxfoundation.org, William Hubbs , Chris Brannon , Kirk Reiser , "open list:SPEAKUP CONSOLE SPEECH DRIVER" , open list References: <20221025101828.1626490-1-ecurtin@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221025101828.1626490-1-ecurtin@redhat.com> Organization: I am not organized User-Agent: NeoMutt/20170609 (1.8.3) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, Eric Curtin, le mar. 25 oct. 2022 11:18:24 +0100, a ecrit: > Fixes build of utils.h header file, occurred when building kernel on > postmarketOS on Lenovo Duet Chromebook. > > drivers/accessibility/speakup/utils.h:57:9: error: unknown type name 'u_char'; did you mean 'char'? > 57 | u_char *pn = (u_char *)name; > | ^~~~~~ > | char > There is already a patch pending commit that just replaces it with unsigned char. (see Subject: [PATCH] speakup: replace utils' u_char with unsigned char ) Samuel