1. 03 10月, 2013 7 次提交
  2. 02 10月, 2013 2 次提交
  3. 01 10月, 2013 9 次提交
  4. 30 9月, 2013 1 次提交
  5. 29 9月, 2013 2 次提交
  6. 28 9月, 2013 17 次提交
  7. 27 9月, 2013 2 次提交
    • N
      regulator: ti-abb: Fix bias voltage glitch in transition to bypass mode · bf00ca35
      Nishanth Menon 提交于
      As documented in Application Note SWPA117 v2.1(NDA), LDO override has a
      requirement that when switching from Bias active + override active
      mode(FBB/RBB) to Bypass(nominal) mode, LDO reset must be performed
      *after* LDO transitions to Bypass(nominal) mode.
      
      The same rule in reverse applies when switching from a ABB bypass mode
      to ABB enabled - LDO override *must* be performed prior to transition to
      required ABB mode, if we do not do that, the same glitch takes place.
      
      Currently while transitioning to ABB bypass, we reset the LDO overide
      prior to the transition which causes a few milliseconds where ABB LDO
      voltage could go all the way to 800mV(based on SoC process node),
      during this period, the delta voltage between VDD rail and VBB rail
      could cause the system to improperly function.
      Signed-off-by: NNishanth Menon <nm@ti.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      Cc: stable@vger.kernel.org
      bf00ca35
    • J
      i40e: clean up coccicheck reported errors · d7595a22
      Jesse Brandeburg 提交于
      coccicheck shows:
      
      drivers/net/ethernet/intel/i40e/i40e_adminq.c:704:2-8: Replace memcpy
      with struct assignment
      drivers/net/ethernet/intel/i40e/i40e_adminq.c:763:1-7: Replace memcpy
      with struct assignment
      drivers/net/ethernet/intel/i40e/i40e_adminq.c:810:2-8: Replace memcpy
      with struct assignment
      drivers/net/ethernet/intel/i40e/i40e_common.c:510:2-8: Replace memcpy
      with struct assignment
      
      Fix each of them with a *a = *b;
      Signed-off-by: NJesse Brandeburg <jesse.brandeburg@intel.com>
      Tested-by: NKavindya Deegala <kavindya.s.deegala@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      d7595a22