Re: [PATCH v2 10/21] staging: rtl8192e: replace memcpy() -> ether_addr_copy_unaligned()

2015-04-14 Thread Dan Carpenter
On Mon, Apr 13, 2015 at 11:47:33PM +0200, Mateusz Kulikowski wrote: > rtl8192e driver uses memcpy() to copy hw addresses in several places. > checkpatch.pl suggests to use ether_addr_copy(), but most of > addresses in driver may be unaligned. The pointer to the struct is normally aligned (or you a

Re: [PATCH v2 13/21] staging: rtl8192e: Fix PREFER_PR_LEVEL warnings

2015-04-14 Thread Dan Carpenter
On Mon, Apr 13, 2015 at 11:47:36PM +0200, Mateusz Kulikowski wrote: > Fix most of remaining PREFER_PR_LEVEL warnings in rtllib. > Replace printk() with pr_* where possible. > > Signed-off-by: Mateusz Kulikowski > --- > drivers/staging/rtl8192e/rtllib.h| 4 +- > drivers/staging/rtl81

Re: [PATCH v2 13/21] staging: rtl8192e: Fix PREFER_PR_LEVEL warnings

2015-04-14 Thread Dan Carpenter
Also these should be netdev_dbg or some crap. regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH v2 15/21] staging: rtl8192e: Fix LONG_LINE warnings - modify variables

2015-04-14 Thread Dan Carpenter
On Mon, Apr 13, 2015 at 11:47:38PM +0200, Mateusz Kulikowski wrote: > @@ -557,43 +559,43 @@ static u8 CCKSwingTable_Ch14[CCK_Table_length][8] > = { > static void dm_tx_update_tssi_weak_signal(struct net_device *dev, u8 RF_Type) > { > struct r8192_priv *p = rtllib_priv(dev); > + u

re: ion: add test device for unit tests to interact with dma_bufs

2015-04-14 Thread Dan Carpenter
Hello Colin Cross, The patch ceff95d49cc3: "ion: add test device for unit tests to interact with dma_bufs" from Dec 13, 2013, leads to the following static checker warning: drivers/staging/android/ion/ion_test.c:121 ion_handle_test_kernel() warn: missing error code here? 'dma_buf_

[PATCH] android: Support creating sync fence from drm fences

2015-04-14 Thread Lauri Peltonen
Modify sync_fence_create to accept a 'struct fence' instead of 'struct sync_pt'. This will allow drm drivers to create sync_fence objects and pass sync fd's between user space with minimal modifications, without ever creating sync_timeline or sync_pt objects, and without implementing the sync_time

about our SEO (search engine optimization)

2015-04-14 Thread Zach
Hey, I was wondering if you generate any business from your website? I can help you accomplish that if you're not already. I specialize in the following: -SEO (search engine optimization) -Website Development -Reputation management and online reviews -Organic and Local SEO Just reply back and I

Business-Vorschlag

2015-04-14 Thread Dr brendan Nelson
Hallo Freund, Ich bin Dr. Brendan Nelson Leiter Rechnungswesen Revision einer Bank aus London, 48 Haymarket London SW1Y 4SE Piccadilly Circus, hier in England (Royal Bank of Scotland). Ich schreibe Ihnen über ein Geschäft Vorschlag, dass der immense und des gegenseitigen Nutzens, um uns beide

Re: [PATCH net-next] hv_netvsc: Implement partial copy into send buffer

2015-04-14 Thread David Miller
From: Haiyang Zhang Date: Mon, 13 Apr 2015 16:34:35 -0700 > If remaining space in a send buffer slot is too small for the whole message, > we only copy the RNDIS header and PPI data into send buffer, so we can batch > one more packet each time. It reduces the vmbus per-message overhead. > > Sign