From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751459AbcGOPl0 (ORCPT ); Fri, 15 Jul 2016 11:41:26 -0400 Received: from 216-12-86-13.cv.mvl.ntelos.net ([216.12.86.13]:59022 "EHLO brightrain.aerifal.cx" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751000AbcGOPlZ (ORCPT ); Fri, 15 Jul 2016 11:41:25 -0400 Date: Fri, 15 Jul 2016 11:41:12 -0400 From: Rich Felker To: Paul Gortmaker Cc: LKML , linux-sh@vger.kernel.org, Jason Cooper , Marc Zyngier , Thomas Gleixner Subject: Re: [PATCH v3 08/12] irqchip: add J-Core AIC driver Message-ID: <20160715154112.GS15995@brightrain.aerifal.cx> References: <05a5be0a4f1471272dcdd2259e4d97642ee43759.1464148904.git.dalias@libc.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jul 15, 2016 at 11:35:55AM -0400, Paul Gortmaker wrote: > > +++ b/drivers/irqchip/irq-jcore-aic.c > > @@ -0,0 +1,95 @@ > > +/* > > + * J-Core SoC AIC driver > > + * > > + * Copyright (C) 2015-2016 Smart Energy Instruments, Inc. > > + * > > + * This file is subject to the terms and conditions of the GNU General Public > > + * License. See the file "COPYING" in the main directory of this archive > > + * for more details. > > + */ > > + > > +#include > > +#include > > +#include > > +#include > > +#include > > Please don't use module.h or MODULE_* in code that is controlled by > a bool Kconfig. Thanks for catching this. Fixed. Rich