1. 22 8月, 2011 1 次提交
  2. 01 8月, 2011 1 次提交
    • M
      i.MX25 GPT clock fix: ensure correct the clock source · 2012d9ca
      Mehnert, Torsten 提交于
      Request for comment and commit.
      
      From: T. Mehnert <t.mehnert@eckelmann.de>
      Date: Mon, 4 Jul 2011 15:53:30 +0200
      Subject: [PATCH] i.MX25 GPT clock fix: ensure correct the clock source
      
      This patch ensures, that Linux will take the correct clock source (AHB_DIV)
      for gpt in the ARM i.MX25 implementation. The currect code depends on the reset
      defaults of the CCM_MCR register. So on some boards it could happen that the
      UPLL is used for clock source, which results in faulty time behavior in Linux.
      In this case all delays or sleeps will will be faktor 1.8 too long.
      Signed-off-by: NTorsten Mehnert <t.mehnert@eckelmann.de>
      Signed-off-by: NSascha Hauer <s.hauer@pengutronix.de>
      2012d9ca
  3. 27 7月, 2011 5 次提交
  4. 26 7月, 2011 3 次提交
    • F
      ARM: mach-imx/mx31lilly: Fix section mismatches · f07c7d67
      Fabio Estevam 提交于
      Fix the following section mismatches:
      
      WARNING: vmlinux.o(.text+0x1026c): Section mismatch in reference from the function lilly1131_usb_init() to the variable .init.rodata:imx31_mxc_ehci_hs_data
      The function lilly1131_usb_init() references
      the variable __initconst imx31_mxc_ehci_hs_data.
      This is often because lilly1131_usb_init lacks a __initconst
      annotation or the annotation of imx31_mxc_ehci_hs_data is wrong.
      
      WARNING: vmlinux.o(.text+0x10270): Section mismatch in reference from the function lilly1131_usb_init() to the (unknown reference) .init.rodata:(unknown)
      The function lilly1131_usb_init() references
      the (unknown reference) __initconst (unknown).
      This is often because lilly1131_usb_init lacks a __initconst
      annotation or the annotation of (unknown) is wrong.
      
      WARNING: vmlinux.o(.text+0x10274): Section mismatch in reference from the function lilly1131_usb_init() to the (unknown reference) .init.data:(unknown)
      The function lilly1131_usb_init() references
      the (unknown reference) __initdata (unknown).
      This is often because lilly1131_usb_init lacks a __initdata
      annotation or the annotation of (unknown) is wrong.
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      Signed-off-by: NSascha Hauer <s.hauer@pengutronix.de>
      f07c7d67
    • F
      ARM: mach-imx/mx31ads: Fix section mismatches · ea7aed6b
      Fabio Estevam 提交于
      Fix the following section mismatches:
      
      WARNING: vmlinux.o(.text+0x101cc): Section mismatch in reference from the function mxc_init_i2c() to the (unknown reference) .init.data:(unknown)
      The function mxc_init_i2c() references
      the (unknown reference) __initdata (unknown).
      This is often because mxc_init_i2c lacks a __initdata
      annotation or the annotation of (unknown) is wrong.
      
      WARNING: vmlinux.o(.text+0x101d8): Section mismatch in reference from the function mxc_init_i2c() to the variable .init.rodata:imx31_imx_i2c_data
      The function mxc_init_i2c() references
      the variable __initconst imx31_imx_i2c_data.
      This is often because mxc_init_i2c lacks a __initconst
      annotation or the annotation of imx31_imx_i2c_data is wrong.
      
      WARNING: vmlinux.o(.text+0x10200): Section mismatch in reference from the function mxc_init_audio() to the variable .init.rodata:imx31_imx_ssi_data
      The function mxc_init_audio() references
      the variable __initconst imx31_imx_ssi_data.
      This is often because mxc_init_audio lacks a __initconst
      annotation or the annotation of imx31_imx_ssi_data is wrong.
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      Signed-off-by: NSascha Hauer <s.hauer@pengutronix.de>
      ea7aed6b
    • J
      Add tlv320aic32x4 platform data to Visstrim_M10. · c86566bb
      Javier Martin 提交于
      Without this platform data the aic32x4 audio
      codec in the Visstrim_M10 won't work properly.
      Signed-off-by: NJavier Martin <javier.martin@vista-silicon.com>
      Signed-off-by: NSascha Hauer <s.hauer@pengutronix.de>
      c86566bb
  5. 15 7月, 2011 1 次提交
    • S
      spi/imx: use soc name in spi device type naming scheme · 04ee5854
      Shawn Guo 提交于
      Software defined version number is not stable enough to be used
      in device type naming scheme.  The patch changes it to use implicit
      soc name for spi device type definition.  In this way, we can easily
      align the naming scheme with device tree binding, which comes later.
      
      It removes fifosize from spi_imx_data and adds devtype there, so that
      fifosize can be set in an inline function according to devtype.
      Also, cpu_is_mx can be replaced by inline functions checking devtype.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Sascha Hauer <s.hauer@pengutronix.de>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Signed-off-by: NGrant Likely <grant.likely@secretlab.ca>
      04ee5854
  6. 09 7月, 2011 1 次提交
  7. 07 7月, 2011 17 次提交
  8. 22 6月, 2011 1 次提交
    • A
      net: remove mm.h inclusion from netdevice.h · b7f080cf
      Alexey Dobriyan 提交于
      Remove linux/mm.h inclusion from netdevice.h -- it's unused (I've checked manually).
      
      To prevent mm.h inclusion via other channels also extract "enum dma_data_direction"
      definition into separate header. This tiny piece is what gluing netdevice.h with mm.h
      via "netdevice.h => dmaengine.h => dma-mapping.h => scatterlist.h => mm.h".
      Removal of mm.h from scatterlist.h was tried and was found not feasible
      on most archs, so the link was cutoff earlier.
      
      Hope people are OK with tiny include file.
      
      Note, that mm_types.h is still dragged in, but it is a separate story.
      Signed-off-by: NAlexey Dobriyan <adobriyan@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b7f080cf
  9. 07 6月, 2011 1 次提交
  10. 19 5月, 2011 7 次提交
  11. 25 3月, 2011 1 次提交
  12. 23 3月, 2011 1 次提交