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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6A6CEC04A6A for ; Wed, 2 Aug 2023 16:33:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232819AbjHBQdg (ORCPT ); Wed, 2 Aug 2023 12:33:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38314 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232838AbjHBQdc (ORCPT ); Wed, 2 Aug 2023 12:33:32 -0400 Received: from fllv0016.ext.ti.com (fllv0016.ext.ti.com [198.47.19.142]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 48862272B; Wed, 2 Aug 2023 09:33:29 -0700 (PDT) Received: from lelv0266.itg.ti.com ([10.180.67.225]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 372GXH0Y040683; Wed, 2 Aug 2023 11:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1690993997; bh=aj36lQFcLGyLFCI4TdSoefHrWZpxlble72FTUSoXD1M=; h=Date:Subject:To:CC:References:From:In-Reply-To; b=tfUzKdjeTKEr9zzRx+ue3Gqs13hUAQZxXMUxI+a/zgO2YfdmPJhPP0HHrErpEVNsK ZpblM8HX/rCMwWw+yTI1QwqXas8WHDiMEkn28ShVFzQYvMr/NTOrYYBORTcLQNfI43 1d/JpLc9j94Z9FVsuLyNfY1P3+ZRhWSvRMDPT+W4= Received: from DLEE106.ent.ti.com (dlee106.ent.ti.com [157.170.170.36]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 372GXHBn068377 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Wed, 2 Aug 2023 11:33:17 -0500 Received: from DLEE112.ent.ti.com (157.170.170.23) by DLEE106.ent.ti.com (157.170.170.36) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Wed, 2 Aug 2023 11:33:17 -0500 Received: from fllv0040.itg.ti.com (10.64.41.20) by DLEE112.ent.ti.com (157.170.170.23) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Wed, 2 Aug 2023 11:33:17 -0500 Received: from [10.250.36.161] (ileaxei01-snat.itg.ti.com [10.180.69.5]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id 372GXGFr126074; Wed, 2 Aug 2023 11:33:16 -0500 Message-ID: Date: Wed, 2 Aug 2023 11:33:16 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.13.0 Subject: Re: [PATCH v3] misc: sram: Add DMA-BUF Heap exporting of SRAM areas Content-Language: en-US To: Greg Kroah-Hartman CC: Arnd Bergmann , Christian Gmeiner , John Stultz , Philipp Zabel , Sumit Semwal , , , , References: <20230713191316.116019-1-afd@ti.com> <2023071344-skinhead-send-33f7@gregkh> From: Andrew Davis In-Reply-To: <2023071344-skinhead-send-33f7@gregkh> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org On 7/13/23 2:27 PM, Greg Kroah-Hartman wrote: > On Thu, Jul 13, 2023 at 02:13:16PM -0500, Andrew Davis wrote: >> +int sram_add_dma_heap(struct sram_dev *sram, >> + struct sram_reserve *block, >> + phys_addr_t start, >> + struct sram_partition *part) >> +{ >> + struct sram_dma_heap *sram_dma_heap; >> + struct dma_heap_export_info exp_info; >> + >> + dev_info(sram->dev, "Exporting SRAM Heap '%s'\n", block->label); > > When drivers are working properly, they are quiet. > This should only be printed once in early boot when the memory is added, I was wanting this to match the other memory exporters/output at the beginning of boot logs. But quiet is fine too, will change this to dev_dbg() for v4. Thanks, Andrew > thanks, > > greg k-h