linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: robherring2@gmail.com (Rob Herring)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 07/15] ARM: at91: clean-up mach/io.h
Date: Tue, 14 Feb 2012 07:24:39 -0600	[thread overview]
Message-ID: <4F3A6097.2030606@gmail.com> (raw)
In-Reply-To: <4F3A2797.7000402@atmel.com>

On 02/14/2012 03:21 AM, Nicolas Ferre wrote:
> On 02/13/2012 10:43 PM, Rob Herring :
>> From: Rob Herring <rob.herring@calxeda.com>
>>
>> Move most of io.h into at91_io.h and update includes.
>>
>> Signed-off-by: Rob Herring <rob.herring@calxeda.com>
>> ---
>>  arch/arm/mach-at91/at91cap9.c                     |    1 +
>>  arch/arm/mach-at91/at91cap9_devices.c             |    1 +
> 
> Please do not touch the "*cap9*" files anymore: They are scheduled for
> removal for 3.4 kernel:
> Documentation/feature-removal-schedule.txt

Okay.

> 
>>  arch/arm/mach-at91/at91rm9200.c                   |    1 +
>>  arch/arm/mach-at91/at91rm9200_devices.c           |    1 +
>>  arch/arm/mach-at91/at91rm9200_time.c              |    1 +
>>  arch/arm/mach-at91/at91sam9260.c                  |    1 +
>>  arch/arm/mach-at91/at91sam9260_devices.c          |    1 +
>>  arch/arm/mach-at91/at91sam9261.c                  |    1 +
>>  arch/arm/mach-at91/at91sam9261_devices.c          |    1 +
>>  arch/arm/mach-at91/at91sam9263.c                  |    1 +
>>  arch/arm/mach-at91/at91sam9263_devices.c          |    1 +
>>  arch/arm/mach-at91/at91sam9g45.c                  |    1 +
>>  arch/arm/mach-at91/at91sam9g45_devices.c          |    1 +
>>  arch/arm/mach-at91/at91sam9rl.c                   |    1 +
>>  arch/arm/mach-at91/at91sam9rl_devices.c           |    1 +
>>  arch/arm/mach-at91/at91x40.c                      |    1 +
>>  arch/arm/mach-at91/at91x40_time.c                 |    1 +
>>  arch/arm/mach-at91/board-cap9adk.c                |    1 +
>>  arch/arm/mach-at91/board-cpu9krea.c               |    1 +
>>  arch/arm/mach-at91/board-eco920.c                 |    1 +
>>  arch/arm/mach-at91/board-yl-9200.c                |    1 +
>>  arch/arm/mach-at91/clock.c                        |    1 +
>>  arch/arm/mach-at91/include/mach/at91_io.h         |   44 +++++++++++++++++++++
>>  arch/arm/mach-at91/include/mach/at91sam9_ddrsdr.h |    2 +
>>  arch/arm/mach-at91/include/mach/at91sam9_sdramc.h |    2 +
>>  arch/arm/mach-at91/include/mach/uncompress.h      |    1 +
>>  arch/arm/mach-at91/pm.c                           |    1 +
>>  arch/arm/mach-at91/pm.h                           |    2 +
>>  arch/arm/mach-at91/setup.c                        |    1 +
>>  drivers/pcmcia/at91_cf.c                          |    1 +
>>  drivers/rtc/rtc-at91sam9.c                        |    2 +-
>>  drivers/usb/gadget/at91_udc.c                     |    1 +
>>  drivers/watchdog/at91rm9200_wdt.c                 |    1 +
>>  drivers/watchdog/at91sam9_wdt.c                   |    1 +
>>  34 files changed, 80 insertions(+), 1 deletions(-)
>>  create mode 100644 arch/arm/mach-at91/include/mach/at91_io.h
>>

snip

>> diff --git a/arch/arm/mach-at91/include/mach/at91sam9_ddrsdr.h b/arch/arm/mach-at91/include/mach/at91sam9_ddrsdr.h
>> index e2f8da8..0427212 100644
>> --- a/arch/arm/mach-at91/include/mach/at91sam9_ddrsdr.h
>> +++ b/arch/arm/mach-at91/include/mach/at91sam9_ddrsdr.h
>> @@ -12,6 +12,8 @@
>>  #ifndef AT91SAM9_DDRSDR_H
>>  #define AT91SAM9_DDRSDR_H
>>  
>> +#include <mach/at91_io.h>
> 
> Do we need this include in header files?

Yes, for at91_sys_write/read used at the bottom.

Rob

  reply	other threads:[~2012-02-14 13:24 UTC|newest]

Thread overview: 74+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-13 21:43 [PATCH 00/15] mach/io.h cleanup and removal Rob Herring
2012-02-13 21:43 ` [PATCH 01/15] usb: ohci-pxa27x: add explicit include of hardware.h Rob Herring
2012-02-13 21:43 ` [PATCH 02/15] ARM: add explicit include of system.h to processor.h Rob Herring
2012-02-13 22:14   ` H Hartley Sweeten
2012-02-13 21:43 ` [PATCH 03/15] ARM: provide runtime hook for ioremap Rob Herring
2012-02-13 22:13   ` H Hartley Sweeten
2012-02-13 22:30   ` Russell King - ARM Linux
2012-02-13 22:48     ` Rob Herring
2012-02-13 21:43 ` [PATCH 04/15] ARM: imx: convert to common runtime ioremap hook Rob Herring
2012-02-16  0:17   ` Shawn Guo
2012-02-13 21:43 ` [PATCH 05/15] ARM: msm: use " Rob Herring
2012-02-13 23:05   ` David Brown
2012-02-13 21:43 ` [PATCH 06/15] ARM: msm: clean-up mach/io.h Rob Herring
2012-02-13 21:43 ` [PATCH 07/15] ARM: at91: " Rob Herring
2012-02-14  9:21   ` Nicolas Ferre
2012-02-14 13:24     ` Rob Herring [this message]
2012-02-16  7:43       ` Jean-Christophe PLAGNIOL-VILLARD
2012-02-16 14:08         ` Rob Herring
2012-02-16 14:23           ` Jean-Christophe PLAGNIOL-VILLARD
2012-02-23 17:26             ` Nicolas Ferre
2012-02-27 16:55               ` Rob Herring
2012-02-27 17:27                 ` Jean-Christophe PLAGNIOL-VILLARD
2012-02-13 21:43 ` [PATCH 08/15] ARM: davinci: remove unneeded mach/io.h include Rob Herring
2012-02-13 21:43 ` [PATCH 09/15] ARM: orion5x: clean-up mach/io.h Rob Herring
2012-02-13 21:43 ` [PATCH 10/15] ARM: tegra: " Rob Herring
2012-02-13 21:43 ` [PATCH 11/15] ARM: ep93xx: " Rob Herring
2012-02-13 21:52   ` Ryan Mallon
2012-02-13 22:15     ` Rob Herring
2012-02-13 22:16   ` H Hartley Sweeten
2012-02-27 15:17   ` [PATCH] " Rob Herring
2012-02-13 21:43 ` [PATCH 12/15] ARM: clps711x: remove unneeded include of mach/io.h Rob Herring
2012-02-13 21:43 ` [PATCH 13/15] ARM: make mach/io.h include optional Rob Herring
2012-02-13 22:14   ` H Hartley Sweeten
2012-02-13 22:36   ` Russell King - ARM Linux
2012-02-13 22:55     ` Rob Herring
2012-02-14  2:03     ` Arnd Bergmann
2012-02-14  2:54       ` Rob Herring
2012-02-14  8:04         ` Arnd Bergmann
2012-02-14 14:36           ` Rob Herring
2012-02-14 17:16             ` Arnd Bergmann
2012-02-14 17:40               ` Russell King - ARM Linux
2012-02-14 18:12                 ` Arnd Bergmann
2012-02-14 23:09                 ` Rob Herring
2012-02-14 23:43                   ` Russell King - ARM Linux
2012-02-15  0:25                     ` Nicolas Pitre
2012-02-15 14:14                       ` Rob Herring
2012-02-15  0:57                     ` Arnd Bergmann
2012-02-27 19:31               ` Rob Herring
2012-02-28 16:10                 ` Arnd Bergmann
2012-02-27 22:31           ` Rob Herring
2012-02-28 16:32             ` Arnd Bergmann
2012-02-13 23:15   ` H Hartley Sweeten
2012-02-14  1:06     ` Arnd Bergmann
2012-02-14 17:38       ` H Hartley Sweeten
2012-02-14 18:20         ` Arnd Bergmann
2012-02-13 21:43 ` [PATCH 14/15] ARM: remove bunch of now unused mach/io.h files Rob Herring
2012-02-13 22:16   ` H Hartley Sweeten
2012-02-16  0:19   ` Shawn Guo
2012-02-16 18:57   ` Linus Walleij
2012-02-13 21:43 ` [PATCH 15/15] ARM: kill off __mem_pci Rob Herring
2012-02-13 22:22 ` [PATCH 00/15] mach/io.h cleanup and removal Tony Lindgren
2012-02-13 23:56   ` Tony Lindgren
2012-02-14  3:09   ` Rob Herring
2012-02-13 23:41 ` Tony Lindgren
2012-02-14  3:20   ` Rob Herring
2012-02-14 17:24     ` Tony Lindgren
2012-02-14 17:57       ` Arnd Bergmann
2012-02-14 18:28         ` Nicolas Pitre
2012-02-14 19:41         ` Rob Herring
2012-02-14 20:43           ` Tony Lindgren
2012-02-14 21:26             ` Arnd Bergmann
2012-02-14 21:54               ` Rob Herring
2012-02-14 22:38                 ` Arnd Bergmann
2012-02-21 22:47 ` Stephen Warren

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4F3A6097.2030606@gmail.com \
    --to=robherring2@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).