1. 17 8月, 2012 7 次提交
  2. 04 8月, 2012 1 次提交
  3. 26 7月, 2012 1 次提交
  4. 11 7月, 2012 7 次提交
  5. 05 7月, 2012 2 次提交
  6. 03 7月, 2012 5 次提交
  7. 29 6月, 2012 1 次提交
    • P
      ARM: mxs/tx28: fix odd include · f1cefa85
      Paul Bolle 提交于
      arch/arm/mach-mxs/module-tx28.c includes "../devices-mx28.h". That's a
      bit odd, because that header can be found in the same directory. This
      only works because arch/arm/mach-mxs/include should be in the header
      search path for this file. Nevertheless, this file can simply include
      "device-mx28.h" (just as the four other files including that header do).
      Signed-off-by: NPaul Bolle <pebolle@tiscali.nl>
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      f1cefa85
  8. 13 5月, 2012 2 次提交
  9. 12 5月, 2012 8 次提交
  10. 09 5月, 2012 5 次提交
  11. 08 5月, 2012 1 次提交
    • S
      ARM: mxs: enable pinctrl dummy states · d1654b80
      Shawn Guo 提交于
      The mxs pinctrl driver will only support DT probe.  That said, the mxs
      device drivers can only get pinctrl state from pinctrl subsystem when
      the drivers get probed from device tree.
      
      Before converting the whole mxs platform support over to device tree,
      we need to enable pinctrl dummy states for those non-DT board files
      to ensure the pinctrl API adopted by mxs device drivers will work for
      both DT and non-DT probe.
      
      Instead of calling pinctrl_provide_dummies() directly in every board
      file, the patch introduces soc specific calls mx23_soc_init() and
      mx28_soc_init() for boards' .init_machine hook to invoke, so that
      any soc specific setup for non-DT boot only can be added there.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      d1654b80