Received: by 2002:ac0:aed5:0:0:0:0:0 with SMTP id t21csp5541223imb; Thu, 7 Mar 2019 18:57:06 -0800 (PST) X-Google-Smtp-Source: APXvYqwaMytdOeI+lcLlXhS6LPRmGCwmvezCly4RrWqiTza7XOVR7GktIg7j/k/2xgASTEoyxmlE X-Received: by 2002:a17:902:282b:: with SMTP id e40mr16386793plb.111.1552013826073; Thu, 07 Mar 2019 18:57:06 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1552013826; cv=none; d=google.com; s=arc-20160816; b=J/JNEAjUK3ZPhnu/DTt4B9cWqSQke/S+E9qaIByYcgtISBJxupj9guSl3ijeUgYv5Q /UsHScrLsX7E1nc5rodNU9Xp/H/G2Bnx7fyKkHuTM2tMwfMoijtqLCEpdJtBWNqSny9l Pkl+uhfMGzxpDkNHScFzzCoTIYlnfYUzirGC3ttUj0pe2GcnC6Afy+Oa92e5BoGH4bo0 Qvaz3BkwB59xyiPmghIzec6EjCfPpk8sml2wfFxYZgcOtfKrjilIzLSQWLS07dV/Y8o0 qGG67lRkC897s5sR8YdQEPgp8+oO45Mlfe1AgwWpgpsTpH8mKhLLWnGFvQ8QjSmm5MBH vCIQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:references :subject:cc:to:from; bh=uwL1tVs8S77c3Rcj5BQTpDdzKXgKnKuRFEuSCB4zda8=; b=G5FWmyo7ZQqKfVvxOeCHMgp39ocIibD7BrITzjJLV7qGY4PF1/V7o59pOxGoaLfH9P P15gr9FsB8SWjIIFkRyM8GlQ+NgD0if8VC3Po4JgJ3fOEXMO4aIk2RCt2P3XHyWjvMBh k6g0g3cHu0SXYPdViptkcyPxaRtRLByaVVzPcJ4QW0E3qDiq80V2hYyYc6k6tPhu9yWi czQsdgzYZzhUfwaWjuU1s80B7SqZSv3y09mhPoFh2ahflDZQgtVY/c3CgQZX85a14W9i 3UpDShMFytMCNVObdP1KYIJ5FbzMkhgi0pMRsNZT5klOUSXkKRnW0litDba5AvA9yOUZ 4o4A== 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 l64si5210780pgd.104.2019.03.07.18.56.50; Thu, 07 Mar 2019 18:57:06 -0800 (PST) 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 S1726505AbfCHC4Z (ORCPT + 99 others); Thu, 7 Mar 2019 21:56:25 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:59432 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726441AbfCHC4Y (ORCPT ); Thu, 7 Mar 2019 21:56:24 -0500 Received: from localhost ([127.0.0.1] helo=vostro.local) by Galois.linutronix.de with esmtp (Exim 4.80) (envelope-from ) id 1h25gK-0007cf-LM; Fri, 08 Mar 2019 03:56:20 +0100 From: John Ogness To: Calvin Owens Cc: Petr Mladek , Sergey Senozhatsky , Steven Rostedt , Greg Kroah-Hartman , Jonathan Corbet , , Subject: Re: [PATCH 3/4] printk: Add consoles to a virtual "console" bus References: <087b13f7812b32cc7c3f9efea71c9bcf324dd031.1551486732.git.calvinowens@fb.com> Date: Fri, 08 Mar 2019 03:56:19 +0100 Message-ID: <87ef7ioyzw.fsf@linutronix.de> 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 2019-03-02, Calvin Owens wrote: > This patch embeds a device struct in the console struct, and registers > them on a "console" bus so we can expose attributes in sysfs. I expect that "class" would be more appropriate than "bus". These devices really are grouped together based on their function and not the medium by which they are accessed. John Ogness