Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp342875pxk; Thu, 24 Sep 2020 07:01:53 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzjm79s/pk/0YreTQfIW/qCTijoJtYQ517I0R4HkosIBwDqdDmB2bZNAp+oDLA/DTXBiBMp X-Received: by 2002:a1c:5602:: with SMTP id k2mr5003344wmb.25.1600956110761; Thu, 24 Sep 2020 07:01:50 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1600956110; cv=none; d=google.com; s=arc-20160816; b=v9rz5SQPWQU9qatDCZ8EfW2aKviasRkiluymqh/11hyiNzoDZuZLydwvvKhkWq2Ks0 +H2DGxM0HzVE/6NGCfnGSZbR53+PG4rwM3NFVKiUc4q29iXkYS/vosUONlkM2xZI1vqc Vfn/ZnKFKBrCxTnBTf1vnPhlfzeG6ZKBq1AVryTESASnpmxC3rV7vRogmeZrq/upcwm/ RN+8UKusbzwbXAr97G5Qn6B7lEiSYZhsiX4dPLUeOGJH/2RxAsehh3+r2nePqKLXWhw8 P7qvKX/+iPowBvZiGeOQ0fmN7TLpcEOTOBAMmSWotkcIy5SlDhyL+H5nSI3kuMsJYeAi wyFg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=vJBXrS56Uh4+YZkDw3jSuRaZ1RPTLs0M7zONPKaTdf0=; b=YMgxRz1zUJ60bz+d37HyYYrmivylcCdOEOG7rIMvZ1k0zUCIq88PLl4d+LX8D7YSc1 zN/RO4wutY2rb83KdHCNM2BY3ju2AiWF+bHftpEKoi7HPU7gbyNlD5/B1/it7XkT/ibA gTOOI6eCb50+E5T24I+vJ6+y7cayJy1Fi9DRLADk65iS3UBkttWI72ZEsOfkxWhQfc/g Wvatit1oI/hW2U/2GhPbPoLWIfo/jgo/M07Ja1j6dQBTTDLujaCp0YsxlNjC2fXnTxxK n8Mq3u5ZSqwXVf/A+QDMkhZ8yDT3f1qCL0YRei0ekUzZD6QO8c15yfXa+e41PC2KFa3B LFxw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id a14si2357407edk.57.2020.09.24.07.01.22; Thu, 24 Sep 2020 07:01:50 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728251AbgIXN7r (ORCPT + 99 others); Thu, 24 Sep 2020 09:59:47 -0400 Received: from elvis.franken.de ([193.175.24.41]:55143 "EHLO elvis.franken.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728189AbgIXN70 (ORCPT ); Thu, 24 Sep 2020 09:59:26 -0400 Received: from uucp (helo=alpha) by elvis.franken.de with local-bsmtp (Exim 3.36 #1) id 1kLRmK-0005vQ-03; Thu, 24 Sep 2020 15:59:20 +0200 Received: by alpha.franken.de (Postfix, from userid 1000) id 69F41C101A; Thu, 24 Sep 2020 15:55:14 +0200 (CEST) Date: Thu, 24 Sep 2020 15:55:14 +0200 From: Thomas Bogendoerfer To: Wei Li Cc: Paul Burton , Serge Semin , Huacai Chen , Jiaxun Yang , Guenter Roeck , Ralf Baechle , Leonid Yegoshin , "Steven J. Hill" , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org, guohanjun@huawei.com Subject: Re: [PATCH] MIPS: Add the missing 'CPU_1074K' into __get_cpu_type() Message-ID: <20200924135514.GD13973@alpha.franken.de> References: <20200923065312.44851-1-liwei391@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200923065312.44851-1-liwei391@huawei.com> User-Agent: Mutt/1.5.23 (2014-03-12) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Sep 23, 2020 at 02:53:12PM +0800, Wei Li wrote: > Commit 442e14a2c55e ("MIPS: Add 1074K CPU support explicitly.") split > 1074K from the 74K as an unique CPU type, while it missed to add the > 'CPU_1074K' in __get_cpu_type(). So let's add it back. > > Fixes: 442e14a2c55e ("MIPS: Add 1074K CPU support explicitly.") > Signed-off-by: Wei Li > --- > arch/mips/include/asm/cpu-type.h | 1 + > 1 file changed, 1 insertion(+) applied to mips-fixes. Thomas. -- Crap can work. Given enough thrust pigs will fly, but it's not necessarily a good idea. [ RFC1925, 2.3 ]