1. 22 8月, 2011 1 次提交
  2. 16 6月, 2011 1 次提交
    • R
      Change Ryan Mallon's email address across the kernel · 1c5454ee
      Ryan Mallon 提交于
      I no longer work at Bluewater Systems. Update my email address accordingly. I
      have deleted my email address from C files rather than change it. This
      was suggested by several people, since the commit from my new email
      address will cause scripts/get_maintainer.pl to function properly. I
      have not added the .mailmap entry as suggested by Joe because I think
      it is no longer necessary if I touch all the files which had my name
      in them.
      Signed-off-by: NRyan Mallon <rmallon@gmail.com>
      Cc: Andre Renaud <andre@bluewatersys.com>
      Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
      Cc: Andrew Victor <avictor.za@gmail.com>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Anton Vorontsov <cbou@mail.ru>
      Cc: Paul Mundt <lethal@linux-sh.org>
      Cc: Liam Girdwood <lrg@ti.com>
      Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
      Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
      Cc: Joe Perches <joe@perches.com>
      Cc: Jesper Juhl <jj@chaosbits.net>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: trivial@kernel.org
      Cc: linux-kernel@vger.kernel.org
      Reviewed-by: NJesper Juhl <jj@chaosbits.net>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      1c5454ee
  3. 20 10月, 2010 1 次提交
    • N
      arm: remove machine_desc.io_pg_offst and .phys_io · 6451d778
      Nicolas Pitre 提交于
      Since we're now using addruart to establish the debug mapping, we can
      remove the io_pg_offst and phys_io members of struct machine_desc.
      
      The various declarations were removed using the following script:
      
        grep -rl MACHINE_START arch/arm | xargs \
        sed -i '/MACHINE_START/,/MACHINE_END/ { /\.\(phys_io\|io_pg_offst\)/d }'
      
      [ Initial patch was from Jeremy Kerr, example script from Russell King ]
      Signed-off-by: NNicolas Pitre <nicolas.pitre@linaro.org>
      Acked-by: Eric Miao <eric.miao at canonical.com>
      6451d778
  4. 09 6月, 2010 1 次提交
  5. 14 4月, 2010 1 次提交
    • H
      ARM: 5992/1: ep93xx: pass platform startup data as __initdata · b370e082
      Hartley Sweeten 提交于
      A number of the peripherals for the ep93xx are registered at
      startup using platform_data that is passed from the board init
      code to the core code.  This data is then copied to a local
      static variable in the core code.  Since the data is copied,
      the original data can be marked as __initdata and discarded
      after startup is complete.
      
      This adds the __initdata tag to all the appropriate data in
      the various ep93xx board init's.  Specifically, all the
      struct ep93xx_eth_data, struct ep93xxfb_mach_info, and
      struct i2c_gpio_platform_data.
      
      Also, document the various registration functions and note
      what data should be marked as __initdata.
      
      While here, also cleanup a couple over zealous whitespace tabs.
      Signed-off-by: NH Hartley Sweeten <hsweeten@visionengravers.com>
      Acked-by: NRyan Mallon <ryan@bluewatersys.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      b370e082
  6. 16 2月, 2010 1 次提交