Re: [PATCH] mtd: spi-nor: include mtd.h header for struct mtd_info definition

2015-11-28 Thread Rafał Miłecki
On 27 November 2015 at 23:33, Brian Norris <computersforpe...@gmail.com> wrote: > On Fri, Nov 27, 2015 at 10:25:55AM +0100, Rafał Miłecki wrote: >> On 26 November 2015 at 09:05, Rafał Miłecki <zaj...@gmail.com> wrote: >> > Fixes: 1976367173a4 ("mtd: spi-nor:

[PATCH FIX] b43: fix support for 14e4:4321 PCI dev with BCM4321 chipset

2015-06-06 Thread Rafał Miłecki
if they meant PCI device id, or virtual id (from SPROM). To distinguish these devices lets check PHY type (G vs. N). Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: stable@vger.kernel.org # 3.16+ --- Kalle: I'm aware it's quite late for a 4.1 fix, this bug was reported just today. I guess you can

Re: FAILED: patch [PATCH] mtd: m25p80,spi-nor: Fix module aliases for m25p80 failed to apply to 3.17-stable tree

2014-11-11 Thread Rafał Miłecki
On 11 November 2014 23:11, Brian Norris computersforpe...@gmail.com wrote: How about the following backport? I compile tested with CONFIG_MTD_M25P80 as 'm' and 'y', and I made sure the module aliases show up in modinfo. From: Ben Hutchings b...@decadent.org.uk Date: Tue, 30 Sep 2014 03:14:55

Re: FAILED: patch [PATCH] mtd: m25p80,spi-nor: Fix module aliases for m25p80 failed to apply to 3.17-stable tree

2014-11-11 Thread Rafał Miłecki
On 12 November 2014 07:21, Greg KH gre...@linuxfoundation.org wrote: On Wed, Nov 12, 2014 at 07:06:57AM +0100, Rafał Miłecki wrote: On 11 November 2014 23:11, Brian Norris computersforpe...@gmail.com wrote: How about the following backport? I compile tested with CONFIG_MTD_M25P80 as 'm

[PATCH][3.16 FIX][STABLE] b43: fix frequency reported on G-PHY with /new/ firmware

2014-06-12 Thread Rafał Miłecki
aaro.koski...@iki.fi Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: stable@vger.kernel.org Tested-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/net/wireless/b43/xmit.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/drivers/net/wireless/b43/xmit.c b/drivers/net

[PATCH V2][FIX 3.15] b43: Fix machine check error due to improper access of B43_MMIO_PSM_PHY_HDR

2014-04-05 Thread Rafał Miłecki
Offset: 0x0 from 0x8100 (relocation range: 0x8000-0x9fff) Signed-off-by: Rafał Miłecki zaj...@gmail.com Acked-by: Larry Finger larry.fin...@lwfinger.net Cc: Stable stable@vger.kernel.org [2.6.35+] --- V2: Change commit message as Larry suggested, no code changes

Re: [PATCH] USB: usb_wwan: fix handling of missing bulk endpoints

2014-04-03 Thread Rafał Miłecki
2014-04-03 13:06 GMT+02:00 Johan Hovold jhov...@gmail.com: Fix regression introduced by commit 8e493ca1767d (USB: usb_wwan: fix bulk-urb allocation) by making sure to require both bulk-in and out endpoints during port probe. Ohh, that was quick! :) This patch works for me: [33050.103575]

Re: [PATCH] USB: usb_wwan: fix handling of missing bulk endpoints

2014-04-03 Thread Rafał Miłecki
2014-04-03 13:06 GMT+02:00 Johan Hovold jhov...@gmail.com: Fix regression introduced by commit 8e493ca1767d (USB: usb_wwan: fix bulk-urb allocation) by making sure to require both bulk-in and out endpoints during port probe. Tested-by: Rafał Miłecki zaj...@gmail.com -- To unsubscribe from

Re: [PATCH v4 1/2] b43: fix the wrong assignment of status.freq in b43_rx()

2014-01-26 Thread Rafał Miłecki
2014/1/17 ZHAO Gang gamer...@gmail.com: Use the right function to update frequency value. If rx skb is probe response or beacon, the wrong frequency value can cause problem that bss info can't be updated when it should be. Zhao: this fix is great. My development machine was running some

Re: [PATCH] drm/radeon: warn users when hw_i2c is enabled

2014-01-07 Thread Rafał Miłecki
2014/1/7 Alex Deucher alexdeuc...@gmail.com: + if (radeon_hw_i2c == 1) + DRM_INFO(hw_i2c forced on, you may experience display detection problems!\n); What about simple if (radeon_hw_i2c) ? Values 2, 3, ... also enable i2c. -- To unsubscribe from this list: send the line

[PATCH] drm/edid: add quirk for BPC in Samsung NP700G7A-S01PL notebook

2013-12-07 Thread Rafał Miłecki
://bugs.freedesktop.org/show_bug.cgi?id=70934 Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/drm_edid.c |8 1 file changed, 8 insertions(+) diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index f1764ec..a1b4f2b 100644 --- a/drivers/gpu

[STABLE 3.10 ONLY][PATCH] Revert drm/radeon: add missing hdmi callbacks for rv6xx

2013-10-09 Thread Rafał Miłecki
be backported to the 3.10. Accidentally it has applied and modified different struct (r520_asic) that shouldn't have any HDMI callbacks at all. Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: Alex Deucher alexander.deuc...@amd.com --- drivers/gpu/drm/radeon/radeon_asic.c |2 -- 1 file changed, 2

[STABLE][PATCH] drm/radeon: fix hdmi callbacks for rv6xx (incorrectly added to r520)

2013-10-08 Thread Rafał Miłecki
Commit 99d79aa2f3b7729e7290e8bda5d0dd8b0240ec62 was backported slightly wrong adding callbacks in the wrong struct. This moves callbacks to the correct place (matching mainline patch/code). Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: Alex Deucher alexander.deuc...@amd.com --- This patch

Broken backport of drm/radeon: add missing hdmi callbacks for rv6xx to the stable

2013-10-07 Thread Rafał Miłecki
Hi, Commit 15baf2873eb00c6a987a007a1530b302eab0c0b7 was supposed to backport 99d79aa2f3b7729e7290e8bda5d0dd8b0240ec62 to the stable, but it did it wrong. The two magic lines: .hdmi_enable = r600_hdmi_enable, .hdmi_setmode = r600_hdmi_setmode, were added to the wrong struct. The should land in

[PATCH] bgmac: fix internal switch initialization

2013-09-14 Thread Rafał Miłecki
initialization and fix typo in the define. Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: stable@vger.kernel.org --- drivers/net/ethernet/broadcom/bgmac.c |2 +- drivers/net/ethernet/broadcom/bgmac.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net

[FIX][PATCH] drm/radeon: fix WREG32_OR macro setting bits in a register

2013-08-15 Thread Rafał Miłecki
?id=60687 https://bugzilla.kernel.org/show_bug.cgi?id=60709 https://bugs.freedesktop.org/show_bug.cgi?id=67767 Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/radeon.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers

Re: [PATCH] brcmfmac: Turn off ARP offloading when configured for AP.

2013-07-02 Thread Rafał Miłecki
2013/7/2 Arend van Spriel ar...@broadcom.com: On 06/19/2013 06:52 PM, Greg KH wrote: On Wed, Jun 19, 2013 at 05:51:46PM +0200, Arend van Spriel wrote: On 06/19/2013 04:19 PM, Greg KH wrote: On Wed, Jun 19, 2013 at 09:27:09AM +0200, Arend van Spriel wrote: On 06/06/2013 10:55 AM, Arend van

Re: [FIX 3.3+][PATCH] ssb: implement spurious tone avoidance

2013-04-02 Thread Rafał Miłecki
2013/4/1 John W. Linville linvi...@tuxdriver.com: On Thu, Mar 28, 2013 at 05:18:02PM +0100, Rafał Miłecki wrote: And make use of it in b43. This fixes a regression introduced with 49d55cef5b1925a5c1efb6aaddaa40fc7c693335 b43: N-PHY: implement spurious tone avoidance This commit made BCM4322

[PATCH V2] ssb: implement spurious tone avoidance

2013-04-02 Thread Rafał Miłecki
Brüns stefan.bru...@rwth-aachen.de Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: Stable stable@vger.kernel.org --- V2: use ssb_printk instead of non-existing ssb_err add BCM43222 case to don't flood dmesg on this chipset Support for BCM43222 wasn't implemented in this patch, because I don't own

[FIX 3.3+][PATCH] ssb: implement spurious tone avoidance

2013-03-28 Thread Rafał Miłecki
Brüns stefan.bru...@rwth-aachen.de Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: Stable stable@vger.kernel.org --- John: While this is fix, unfortunately it's not a one-liner. I wish to see it in 3.9 and backported to stable kernels, but if you think it's too big, well, just take it for the next

[FIX 3.4+][PATCH] b43: N-PHY: use more bits for offset in RSSI calibration

2013-03-27 Thread Rafał Miłecki
, which is not 231 but -25. This code was introduced in e0c9a0219a8f542e3946fe972a68aacf8c3f906c and caused stability regression on some cards, for ex. BCM4322. Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: stable@vger.kernel.org --- drivers/net/wireless/b43/phy_n.c |4 ++-- 1 file changed

[FIX 3.4+][PATCH] b43: N-PHY: increase initial value of mind in RSSI calibration

2013-03-19 Thread Rafał Miłecki
introduced in 3.4 by commit: e0c9a0219a8f542e3946fe972a68aacf8c3f906c (my BCM4322 performance dropped from 18,4Mb/s to 9,26Mb/s) Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: stable@vger.kernel.org --- drivers/net/wireless/b43/phy_n.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions

Re: [PATCH] b43: Increase number of RX DMA slots

2013-02-19 Thread Rafał Miłecki
2013/2/19 David Laight david.lai...@aculab.com: Bastian Bittorf reported that some of the silent freezes on a Linksys WRT54G were due to overflow of the RX DMA ring buffer, which was created with 64 slots. That finding reminded me that I was seeing similar crashed on a netbook, which

Re: [PATCH] b43: Increase number of RX DMA slots

2013-02-18 Thread Rafał Miłecki
2013/2/18 Larry Finger larry.fin...@lwfinger.net: Bastian Bittorf reported that some of the silent freezes on a Linksys WRT54G were due to overflow of the RX DMA ring buffer, which was created with 64 slots. That finding reminded me that I was seeing similar crashed on a netbook, which also

Re: [FIX][STABLE 3.3+][PATCH] drm/radeon/audio: don't hardcode CRTC id

2012-06-05 Thread Rafał Miłecki
2012/6/5 Christian König deathsim...@vodafone.de: On 04.06.2012 18:49, Alex Deucher wrote: On Mon, Jun 4, 2012 at 12:36 PM, Rafał Miłeckizaj...@gmail.com  wrote: This is based on info released by AMD, should allow using audio in much more cases. Signed-off-by: Rafał Miłeckizaj...@gmail.com

[FIX][STABLE 3.3+][PATCH] drm/radeon/audio: don't hardcode CRTC id

2012-06-04 Thread Rafał Miłecki
This is based on info released by AMD, should allow using audio in much more cases. Signed-off-by: Rafał Miłecki zaj...@gmail.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/r600_audio.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon