From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Hellwig Date: Tue, 24 Apr 2018 09:35:24 +0200 Subject: [OpenRISC] [PATCH 01/22] dma-debug: move initialization to common code In-Reply-To: <294a1469-01d6-10fb-5de1-b1d4513a066c@arm.com> References: <20180420080313.18796-1-hch@lst.de> <20180420080313.18796-2-hch@lst.de> <294a1469-01d6-10fb-5de1-b1d4513a066c@arm.com> Message-ID: <20180424073524.GB18945@lst.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: openrisc@lists.librecores.org On Fri, Apr 20, 2018 at 11:23:43AM +0100, Robin Murphy wrote: >> -void dma_debug_init(u32 num_entries) >> +static int dma_debug_init(void) >> { >> + u32 num_entries; > > Maybe initialise it to PREALLOC_DMA_DEBUG_ENTRIES? We initialize it down in an if/else clause which seems a little more clear to me, at the cost of two extra lines of code. But I suspect I should just go a little further and merge the global req_entries and the local num_entries into a single variable with a better name. >> +core_initcall(dma_debug_init); > > I think it's worth noting that for most users this now happens much earlier > than before. In general that's probably good (e.g. on arm64 it should > prevent false-positives from the Arm SMMU drivers under ACPI), and I can't > imagine it's high-risk, but it is a behaviour change. I'll mention this in the changelog, thanks!