From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3B7603346B2; Fri, 24 Apr 2026 15:48:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777045726; cv=none; b=fwRPtVu64Gvn9tNp9rAL1iAzhVblUpdiGIhNaC6NrF492wtAnJV1Tsq7n+8NOJNHkE28kBhIgyWS7/Yja9DW3uff1WYUejNmcnr9nHaC6iWboM4+TXqg18y+uM2c8uMeBK+HTlJBRh8SXGBct0A/+kVQoDz2AeMSzPIGbM7lEnA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777045726; c=relaxed/simple; bh=1bd5yN/luy9YkAJvQuYF0+kGyC+cd6+REpkOCFHCOjQ=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition:In-Reply-To; b=bGzuPRcnRsIttHKvfZsklOIvryYbAKNL2VEHSNYyqaKDtx0SEIZhAwGNw1a01V5Z+nCNVjs+rz33K4gsYbYdyFbLZUAk89yDXi/6ekODHhSrahe/RlCor1JZcDU9o84p0H5LSBGVnkzt6Tdzot8HckCaj62DYqqRUwxN9wnE5yk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=dvt6DYW+; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="dvt6DYW+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E7D83C19425; Fri, 24 Apr 2026 15:48:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1777045726; bh=1bd5yN/luy9YkAJvQuYF0+kGyC+cd6+REpkOCFHCOjQ=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=dvt6DYW+/fnANRyeyhbuA7p+IKhOXR7475hwmkkAWV70C/S1LMAaRZQ/Qvpnb6gL6 30MsZFKfIgw71uwHXQcMvAwBz7DCXIxJJkArSKRmcTexM9oZA09Fw4eS0MSzz3CQyI 0ba0w57UAVN4Z2JHZfUAkhrAEGuyH9m+57OJQuyekF0AAzYFbC4d8sgX/oq1Fdvuao 5Uch0HdTSHHH3s7vO/CLRulnpA9q9JhLK+aW2hyfWXELh9yFMAl3YM1+IdBeQAtCEU 0gPsgiEZxlJZdBf1SJeTcAEA6Ydosgsb3LvPKhHkAbtAgHa8JMXfyBL1WwCn9syLaz xRulrJ26F+f7Q== Date: Fri, 24 Apr 2026 10:48:44 -0500 From: Bjorn Helgaas To: Mahesh Vaidya Cc: joyce.ooi@intel.com, lpieralisi@kernel.org, kwilczynski@kernel.org, mani@kernel.org, robh@kernel.org, bhelgaas@google.com, krzk+dt@kernel.org, conor+dt@kernel.org, linux-pci@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, subhransu.sekhar.prusty@altera.com, dinguyen@kernel.org Subject: Re: [PATCH 3/3] PCI: altera: add Agilex 5 support Message-ID: <20260424154844.GA8514@bhelgaas> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260424094913.522123-4-mahesh.vaidya@altera.com> Adjust subject lines of both patches to match previous style (capitalize first word, e.g., PCI: altera: Add ... On Fri, Apr 24, 2026 at 02:49:13AM -0700, Mahesh Vaidya wrote: > Add PCIe root port controller support for the Agilex 5 (V4) family > of SoC FPGAs. > +++ b/drivers/pci/controller/pcie-altera.c > @@ -12,6 +12,8 @@ > #include > #include > #include > +#include > +#include Alphabetize these to match existing style. > +static void aglx5_isr(struct irq_desc *desc) > +{ > + struct irq_chip *chip = irq_desc_get_chip(desc); > + struct altera_pcie *pcie; > + struct device *dev; > + u32 status = 0; > + int ret; > + > + chained_irq_enter(chip, desc); > + pcie = irq_desc_get_handler_data(desc); > + dev = &pcie->pdev->dev; > + > + ret = aglx5_indirect_readl(pcie, pcie->pcie_data->port_irq_status_offset, &status); Existing code fits in 80 columns, would be nice if this and a few more below did too.