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 95CCC79C0 for ; Wed, 30 Nov 2022 18:34:34 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1D0FDC433D7; Wed, 30 Nov 2022 18:34:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1669833274; bh=tcP/3rZBDihPO2WK1ana31KjdfofLbh/3e2EEQwsl/g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sdZf0GiH5d0v8IRwK+hDM9VVR07NMHy+QkHkpVM2JResNoerk+hvN7D1D2lhjSBoQ FxitiwjrhK5RZsnktDMSgAMZUo26uLhVcAljIdoFV+qq11k+nsfPGQktY5ypKuSr2V oin1i8bJ85yRmwMGN+WHDfqRSg3ecdMB4/d40gTI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= , Samuel Thibault , stable , Sasha Levin Subject: [PATCH 5.15 021/206] speakup: replace utils u_char with unsigned char Date: Wed, 30 Nov 2022 19:21:13 +0100 Message-Id: <20221130180533.536070738@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221130180532.974348590@linuxfoundation.org> References: <20221130180532.974348590@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Đoàn Trần Công Danh [ Upstream commit 92ca969ff8815f3feef2645199bd39bf594e5eeb ] drivers/accessibility/speakup/utils.h will be used to compile host tool to generate metadata. "u_char" is a non-standard type, which is defined to "unsigned char" on glibc but not defined by some libc, e.g. musl. Let's replace "u_char" with "unsigned char" Signed-off-by: Đoàn Trần Công Danh Reviewed-by: Samuel Thibault Cc: stable Link: https://lore.kernel.org/r/b75743026aaee2d81efe3d7f2e8fa47f7d0b8ea7.1665736571.git.congdanhqx@gmail.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- drivers/accessibility/speakup/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/accessibility/speakup/utils.h b/drivers/accessibility/speakup/utils.h index 4bf2ee8ac246..4ce9a12f7664 100644 --- a/drivers/accessibility/speakup/utils.h +++ b/drivers/accessibility/speakup/utils.h @@ -54,7 +54,7 @@ static inline int oops(const char *msg, const char *info) static inline struct st_key *hash_name(char *name) { - u_char *pn = (u_char *)name; + unsigned char *pn = (unsigned char *)name; int hash = 0; while (*pn) { -- 2.35.1