Received: by 10.192.165.148 with SMTP id m20csp4028654imm; Tue, 8 May 2018 01:29:04 -0700 (PDT) X-Google-Smtp-Source: AB8JxZqQWA7CnU3yDL6iSG0WS1bQkAADxFg5JuA4bcJtsroDuGbMud4PB8PD/dFlKmJIe++GLSWv X-Received: by 2002:a65:4acc:: with SMTP id c12-v6mr24754396pgu.329.1525768144644; Tue, 08 May 2018 01:29:04 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1525768144; cv=none; d=google.com; s=arc-20160816; b=v4ROxmxbJCv0OhiSCa8bdNsq3zca5UPD3c3QftJ0waUn4zv1hLJNRQnDiiDLTx6mcm khmWaEraob1nlhKPEVdO/cKQvBU2xGOLiJb00rFZOLDrXb/OFbyIs2qLb2C6g9w68bcJ 2MbbM9gPbChiu/UHmlUcOMhTDqXWL667X+BRWjmDyk+9PE41zy7zvlgalqO0a3SmzA7X NF3ospQNvKgMkpUGYyRnJsH4uCeD9jtZG+rLsAhWlh+7fg/zWlslKANtiivegfP+rnxW DtPiKCSING3DXRBT8rJjlndfaxPR8Lsn8gcDLQ3aliARxFUrj/2HeLcQY76uiLTqHrgo BaCw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:message-id :in-reply-to:subject:cc:to:from:date:arc-authentication-results; bh=I19obB1ID440290giXCxO3yT7L+XGxPi2++kwZ6JMWA=; b=itrD9p1VXlqfpgHKosKJGQGWXTXC6pIKGrDvgrI2bBFNtfdsdQQjTktYj0FGU820m0 iv3R7BSMwQyrmG4FNWjW6tGplfalN8lCS9HHdsneBdDz6LvSn/tBx/NifTC1Ho5BDHOS Hm19y3ppRTI9f0sH91ZTrM/XhTgq6E6oempmJNAoez4A8u1M934CMWTQvLrY8oTDzWQi 4cuLEV/NHF8dDunaQo8l5blw1uLVh6alor4tuZf2MW/b9/ICw269Sqa/mjlV5ozR22fW mIZwSXydEuoTO3VS2Fhz91Hz/QMJ6w9wbAjB572v3H+o7U1G3jlygzi0FY1EUIunt7iO Gwyw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id g9-v6si18808394pgv.218.2018.05.08.01.28.49; Tue, 08 May 2018 01:29:04 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932253AbeEHI2J (ORCPT + 99 others); Tue, 8 May 2018 04:28:09 -0400 Received: from kvm5.telegraphics.com.au ([98.124.60.144]:55090 "EHLO kvm5.telegraphics.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754532AbeEHI2A (ORCPT ); Tue, 8 May 2018 04:28:00 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by kvm5.telegraphics.com.au (Postfix) with ESMTP id 6235928E4F; Tue, 8 May 2018 04:27:58 -0400 (EDT) Date: Tue, 8 May 2018 18:27:59 +1000 (AEST) From: Finn Thain To: Geert Uytterhoeven cc: Greg Kroah-Hartman , linux-m68k , Linux Kernel Mailing List Subject: Re: [PATCH] nubus: Unconditionally register bus type In-Reply-To: Message-ID: References: <5aee5ede.1c69fb81.353b4.5021SMTPIN_ADDED_MISSING@mx.google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 8 May 2018, Geert Uytterhoeven wrote: > nubus_bus_register() two things: > > 1. Register the NuBus parent device, which represents the bus host, > 2. Register the NuBus bus, which represents the bus type. > > I think this should be split in two, and only the latter should be done > regardless of the presence of NuBus host hardware, to fix the crash. OK. Thanks. --