1. 06 10月, 2012 1 次提交
  2. 17 7月, 2012 1 次提交
  3. 13 7月, 2012 1 次提交
  4. 09 7月, 2012 1 次提交
    • J
      mfd: Add support for enabling tps65910 external 32-kHz oscillator · 712db99d
      Johan Hovold 提交于
      Add flag to platform data to enable external 32-kHz crystal oscillator
      (or square wave) input.
      
      The tps6591x can use either an internal 32-kHz RC oscillator or an
      external crystal (or square wave) to generate the 32-kHz clock.
      
      The default setting depends on the selected boot mode. In boot mode 00
      the internal RC oscillator is used at power-on, but the external crystal
      oscillator (or square wave) can be enabled by clearing the ck32k_ctrl
      flag in the device control register.
      
      Note that there is no way to switch from the external crystal oscillator
      to the internal RC oscillator.
      Signed-off-by: NJohan Hovold <jhovold@gmail.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      712db99d
  5. 07 7月, 2012 1 次提交
  6. 23 5月, 2012 1 次提交
  7. 20 5月, 2012 3 次提交
  8. 01 5月, 2012 1 次提交
  9. 17 3月, 2012 1 次提交
  10. 12 3月, 2012 1 次提交
  11. 07 3月, 2012 1 次提交
  12. 06 2月, 2012 1 次提交
  13. 30 1月, 2012 1 次提交
  14. 23 11月, 2011 3 次提交
  15. 01 8月, 2011 1 次提交
  16. 21 7月, 2011 1 次提交
    • P
      treewide: fix potentially dangerous trailing ';' in #defined values/expressions · 497888cf
      Phil Carmody 提交于
      All these are instances of
        #define NAME value;
      or
        #define NAME(params_opt) value;
      
      These of course fail to build when used in contexts like
        if(foo $OP NAME)
        while(bar $OP NAME)
      and may silently generate the wrong code in contexts such as
        foo = NAME + 1;    /* foo = value; + 1; */
        bar = NAME - 1;    /* bar = value; - 1; */
        baz = NAME & quux; /* baz = value; & quux; */
      
      Reported on comp.lang.c,
      Message-ID: <ab0d55fe-25e5-482b-811e-c475aa6065c3@c29g2000yqd.googlegroups.com>
      Initial analysis of the dangers provided by Keith Thompson in that thread.
      
      There are many more instances of more complicated macros having unnecessary
      trailing semicolons, but this pile seems to be all of the cases of simple
      values suffering from the problem. (Thus things that are likely to be found
      in one of the contexts above, more complicated ones aren't.)
      Signed-off-by: NPhil Carmody <ext-phil.2.carmody@nokia.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      497888cf
  17. 27 5月, 2011 9 次提交