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=-0.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no 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 CFE50C43603 for ; Thu, 12 Dec 2019 14:45:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A123D2253D for ; Thu, 12 Dec 2019 14:45:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576161904; bh=NAwMf3cjvdX5Di0bvRBolsXdWtk+PjPn2VPtYeOUmLg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=Nl8wcHNNYcePtc9YHKfz2RhoPDFHG8ScT8lwmQJlKp0iTsV4K1YF0FHiTkYmbl1g2 AkoI6LtxjJ2Mym7jPecUbf1Fn4OFsH/LFGDMJ0TFBZPyTmKwEeH/c0t7ZcTIcvJCfu zsHGmPuuPLvh62YzEhJeDWpmKJk2bQiqdD/nw208= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729744AbfLLOpD (ORCPT ); Thu, 12 Dec 2019 09:45:03 -0500 Received: from mail.kernel.org ([198.145.29.99]:56756 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729266AbfLLOpD (ORCPT ); Thu, 12 Dec 2019 09:45:03 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id D8FE521655; Thu, 12 Dec 2019 14:45:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576161901; bh=NAwMf3cjvdX5Di0bvRBolsXdWtk+PjPn2VPtYeOUmLg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=t+w/s12W2DMLxoBQUjb1SCe9HqFlW7MdlIe99OOSJZm0Yq24fhuUKZZ/PnpD3S7ca r/eUteeLUgSzIYX3J1fB4mo/KpPTk9DytudyTrXBiKVUNlmLZKlKqEM5iRbIINvQDV G4b5im20mKr4UF78qZEHmtNCrroHHk+KXXGGtE9g= Date: Thu, 12 Dec 2019 15:44:59 +0100 From: Greg KH To: Vitor Soares Cc: linux-kernel@vger.kernel.org, linux-i3c@lists.infradead.org, Joao.Pinto@synopsys.com, bbrezillon@kernel.org, wsa@the-dreams.de, arnd@arndb.de, broonie@kernel.org Subject: Re: [RFC 5/5] i3c: add i3cdev module to expose i3c dev in /dev Message-ID: <20191212144459.GB1668196@kroah.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 10, 2019 at 04:37:33PM +0100, Vitor Soares wrote: > +static int __init i3cdev_init(void) > +{ > + int res; > + > + pr_info("i3c /dev entries driver\n"); Please remove debugging information, kernel code should be quiet unless something goes wrong. > + /* Dynamically request unused major number */ > + res = alloc_chrdev_region(&i3cdev_number, 0, N_I3C_MINORS, "i3c"); Do you really need a whole major, or will a few minors work? thanks, greg k-h