diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-05-05 12:09:46 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-05-14 07:18:19 -0400 |
commit | b2353e1dccceaee1703656c6fa5806ed193fced8 (patch) | |
tree | d9031013085ddf1b150ca4e42a7c7d73a5f09c50 | |
parent | 0630efeee8538ae30d81d6e42c9ffb299a3e67b3 (diff) | |
download | op-kernel-dev-b2353e1dccceaee1703656c6fa5806ed193fced8.zip op-kernel-dev-b2353e1dccceaee1703656c6fa5806ed193fced8.tar.gz |
media: gp8psk: don't abuse of GFP_DMA
There's s no reason why it should be using GFP_DMA there.
This is an USB driver. Any restriction should be, instead,
at HCI core, if any.
Cc: "Luis R. Rodriguez" <mcgrof@kernel.org>
Cc: linux-mm@kvack.org
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
-rw-r--r-- | drivers/media/usb/dvb-usb/gp8psk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb/gp8psk.c b/drivers/media/usb/dvb-usb/gp8psk.c index 37f0622..334b9fb 100644 --- a/drivers/media/usb/dvb-usb/gp8psk.c +++ b/drivers/media/usb/dvb-usb/gp8psk.c @@ -148,7 +148,7 @@ static int gp8psk_load_bcm4500fw(struct dvb_usb_device *d) info("downloading bcm4500 firmware from file '%s'",bcm4500_firmware); ptr = fw->data; - buf = kmalloc(64, GFP_KERNEL | GFP_DMA); + buf = kmalloc(64, GFP_KERNEL); if (!buf) { ret = -ENOMEM; goto out_rel_fw; |