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=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 2C2E7C43462 for ; Fri, 7 May 2021 23:03:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0A1A1613C8 for ; Fri, 7 May 2021 23:03:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229959AbhEGXEH (ORCPT ); Fri, 7 May 2021 19:04:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57090 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229956AbhEGXED (ORCPT ); Fri, 7 May 2021 19:04:03 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E7CDEC061574 for ; Fri, 7 May 2021 16:03:02 -0700 (PDT) From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1620428579; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=JXeejtHvaU6r57y+H/6chLv35n+4kHh0i98g2fKiDNw=; b=NMCn50OEXmZMXO1y0zSZPZZ4MNARh9iWOxZdHWrMJG33LMs1FpmwE/uPVIpUMWelm8CmI0 odd57jzBXu4UHu9iRz6T/mlp/B0UlYj9VCyjBQ9tJOvmQHzRdrlmAoMz4sJOPPnb2sURMj ytNVSqB23rMh5LNA4NZTD9Sq4G/xKGkhkDsGRFRdZEA9MzYWqgECm4NCP841J/ucBornf2 fZebDTGty+qll147dzlRwlOtAZFCpV/TkO9lbNJK2llbmH/BOVvdkJsXjlFv1QU/bLxfb5 WDSQVv7+TQQVxk+5jZKTB7oEiShDGDeHxy+4gIRkBCgXy73KTAipr+yXCbsDQA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1620428579; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=JXeejtHvaU6r57y+H/6chLv35n+4kHh0i98g2fKiDNw=; b=UBHeGQNGG8YqoYmzhKFeRKHRDdsveMvcVQsyLASezu+G4x4bhChlxv8y71fdr/GYNTLdlB mKTyuWFloMRIPiDA== To: Arnd Bergmann , linux-arch@vger.kernel.org Cc: Linus Torvalds , Vineet Gupta , Arnd Bergmann , Richard Henderson , Ivan Kokshaysky , Matt Turner , Geert Uytterhoeven , Michal Simek , "James E.J. Bottomley" , Helge Deller , "David S. Miller" , Ingo Molnar , Borislav Petkov , x86@kernel.org, "H. Peter Anvin" , Chris Zankel , Max Filippov , linux-alpha@vger.kernel.org, linux-kernel@vger.kernel.org, linux-ia64@vger.kernel.org, linux-m68k@lists.linux-m68k.org, linux-parisc@vger.kernel.org, sparclinux@vger.kernel.org, linux-xtensa@linux-xtensa.org Subject: Re: [RFC 01/12] asm-generic: use asm-generic/unaligned.h for most architectures In-Reply-To: <20210507220813.365382-2-arnd@kernel.org> References: <20210507220813.365382-1-arnd@kernel.org> <20210507220813.365382-2-arnd@kernel.org> Date: Sat, 08 May 2021 01:02:59 +0200 Message-ID: <87czu2m9jw.ffs@nanos.tec.linutronix.de> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-m68k@vger.kernel.org On Sat, May 08 2021 at 00:07, Arnd Bergmann wrote: > diff --git a/arch/x86/include/asm/unaligned.h b/arch/x86/include/asm/unaligned.h > deleted file mode 100644 > index 9c754a7447aa..000000000000 > --- a/arch/x86/include/asm/unaligned.h > +++ /dev/null > @@ -1,15 +0,0 @@ > -/* SPDX-License-Identifier: GPL-2.0 */ > -#ifndef _ASM_X86_UNALIGNED_H > -#define _ASM_X86_UNALIGNED_H > - > -/* > - * The x86 can do unaligned accesses itself. > - */ > - > -#include > -#include > - > -#define get_unaligned __get_unaligned_le > -#define put_unaligned __put_unaligned_le > - > -#endif /* _ASM_X86_UNALIGNED_H */ Reviewed-by: Thomas Gleixner Thanks for cleaning that up! tglx