From mboxrd@z Thu Jan 1 00:00:00 1970 From: tony@atomide.com (Tony Lindgren) Date: Thu, 27 Jun 2013 01:06:54 -0700 Subject: [PATCH 4/8] ARM: OMAP: move cpuidle drivers to drivers/cpuidle/ In-Reply-To: <1372241747-21083-5-git-send-email-b.zolnierkie@samsung.com> References: <1372241747-21083-1-git-send-email-b.zolnierkie@samsung.com> <1372241747-21083-5-git-send-email-b.zolnierkie@samsung.com> Message-ID: <20130627080653.GH5523@atomide.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org * Bartlomiej Zolnierkiewicz [130626 12:25]: > While at it: > - remove file path from comment > - fix whitespace issues > > Compile tested only. ... > --- /dev/null > +++ b/drivers/cpuidle/cpuidle-omap34xx.c > @@ -0,0 +1,342 @@ > +/* > + * OMAP3 CPU IDLE Routines > + * > + * Copyright (C) 2008 Texas Instruments, Inc. > + * Rajendra Nayak > + * > + * Copyright (C) 2007 Texas Instruments, Inc. > + * Karthik Dasu > + * > + * Copyright (C) 2006 Nokia Corporation > + * Tony Lindgren > + * > + * Copyright (C) 2005 Texas Instruments, Inc. > + * Richard Woodruff > + * > + * Based on pm.c for omap2 > + * > + * This program is free software; you can redistribute it and/or modify > + * it under the terms of the GNU General Public License version 2 as > + * published by the Free Software Foundation. > + */ > + > +#include > +#include > +#include > +#include > +#include > + > +#include "../../arch/arm/mach-omap2/powerdomain.h" > +#include "../../arch/arm/mach-omap2/clockdomain.h" > + > +#include "../../arch/arm/mach-omap2/pm.h" > +#include "../../arch/arm/mach-omap2/control.h" > +#include "../../arch/arm/mach-omap2/common.h" Do we really want to do includes like this from drivers? Presumably these will go away with DT, but still. Kevin, any comments? Regards, Tony