Re: [PATCH v6] can: xilinx: Convert to runtime_pm

2015-10-22 Thread Sören Brinkmann
Hi Kedar, On Thu, 2015-10-22 at 10:15AM +0530, Kedareswara rao Appana wrote: > Instead of enabling/disabling clocks at several locations in the driver, > Use the runtime_pm framework. This consolidates the actions for runtime PM > In the appropriate callbacks and makes the driver more readable

Re: [PATCH 2/2] can: xilinx: fix bug in bus error handling

2015-10-22 Thread Sören Brinkmann
On Thu, 2015-10-22 at 10:16AM +0530, Kedareswara rao Appana wrote: > Simply resetting the peripheral on bus off condition is not enough, > Because we also need to re-initialize the whole device. > This patch fixes this issue. > > Signed-off-by: Kedareswara rao Appana > --- >

Re: [PATCH 0/7] Phy and mdiobus fixes

2015-09-18 Thread Sören Brinkmann
Hi Russell, On Fri, 2015-09-18 at 10:56AM +0100, Russell King - ARM Linux wrote: > Sorry guys, some of you will get the patches twice, as Sören's name > in the header caused vger to reject all the patches. That is the first time I hear about an issue like that. I've been receiving patches fine

Re: [RFC PATCH 3/3] devicetree: macb: Add optional property tsu-clk

2015-09-14 Thread Sören Brinkmann
On Mon, 2015-09-14 at 09:58AM +0200, Boris Brezillon wrote: > Hi Harini, > > On Mon, 14 Sep 2015 09:39:05 +0530 > Harini Katakam <harinikatakamli...@gmail.com> wrote: > > > On Fri, Sep 11, 2015 at 10:22 PM, Sören Brinkmann > > <soren.brinkm..

Re: [RFC PATCH 3/3] devicetree: macb: Add optional property tsu-clk

2015-09-11 Thread Sören Brinkmann
Hi Harini, On Fri, 2015-09-11 at 01:27PM +0530, Harini Katakam wrote: > Add TSU clock frequency to be used for 1588 support in macb driver. > > Signed-off-by: Harini Katakam > --- > Documentation/devicetree/bindings/net/macb.txt |3 +++ > 1 file changed, 3 insertions(+)

Re: [RFT PATCH] net: axienet: Fix devm_ioremap_resource return value check

2015-07-09 Thread Sören Brinkmann
k.kozlowsk...@gmail.com Cc: sta...@vger.kernel.org Fixes: 46aa27df8853 (net: axienet: Use devm_* calls) Reviewed-by: Sören Brinkmann soren.brinkm...@xilinx.com Sören -- To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to majord...@vger.kernel.org More

Re: [PATCH] xilinx:Remove unused variable num_frag in the function axienet_start_xmit

2015-06-17 Thread Sören Brinkmann
On Wed, 2015-06-17 at 12:21PM -0400, Nicholas Krause wrote: On June 17, 2015 12:07:30 PM EDT, Sören Brinkmann soren.brinkm...@xilinx.com wrote: On Wed, 2015-06-17 at 11:52AM -0400, Nicholas Krause wrote: This removes the unused variable num_frag and the setting of it to the number

Re: [PATCH] xilinx:Remove unused variable num_frag in the function axienet_start_xmit

2015-06-17 Thread Sören Brinkmann
On Wed, 2015-06-17 at 11:52AM -0400, Nicholas Krause wrote: This removes the unused variable num_frag and the setting of it to the number of fragments from the passed sk_buff pointer by this function's caller due to this variable never being used in this particular function and is not declared

Re: [PATCH v2 3/3] ARM: zynq: DT: Use the zynq binding with macb

2015-05-25 Thread Sören Brinkmann
On Fri, 2015-05-22 at 09:22AM -0500, Nathan Sullivan wrote: Use the new zynq binding for macb ethernet, since it will disable half duplex gigabit like the Zynq TRM says to do. Signed-off-by: Nathan Sullivan nathan.sulli...@ni.com --- arch/arm/boot/dts/zynq-7000.dtsi |4 ++-- 1 file

Re: [PATCH] net: macb: Disable half duplex gigabit on Zynq

2015-05-21 Thread Sören Brinkmann
On Thu, 2015-05-21 at 04:47PM -0500, Nathan Sullivan wrote: According to the Zynq TRM, gigabit half duplex is not supported. Add a new cap and compatible string so Zynq can avoid advertising that mode. Signed-off-by: Nathan Sullivan nathan.sulli...@ni.com ---