Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1221868 > unrolled thread
| Started by | Shraddha Barke <shraddha.6596@gmail.com> |
|---|---|
| First post | 2015-09-10 05:40 +0200 |
| Last post | 2015-09-10 05:40 +0200 |
| Articles | 5 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 1/5] Staging: rtl8192u: ieee80211: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" Shraddha Barke <shraddha.6596@gmail.com> - 2015-09-10 05:40 +0200
[PATCH 4/5] Staging: rtl8192u: r8192U_core.c: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" Shraddha Barke <shraddha.6596@gmail.com> - 2015-09-10 05:40 +0200
Re: [PATCH 4/5] Staging: rtl8192u: r8192U_core.c: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2015-09-10 07:20 +0200
Re: [PATCH 4/5] Staging: rtl8192u: r8192U_core.c: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2015-09-10 07:40 +0200
[PATCH 5/5] Staging: wilc1000: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" Shraddha Barke <shraddha.6596@gmail.com> - 2015-09-10 05:40 +0200
| From | Shraddha Barke <shraddha.6596@gmail.com> |
|---|---|
| Date | 2015-09-10 05:40 +0200 |
| Subject | [PATCH 1/5] Staging: rtl8192u: ieee80211: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" |
| Message-ID | <q70Sm-6tp-5@gated-at.bofh.it> |
Fix checkpatch.pl warning "Use #include <linux/uaccess.h> instead of <asm/uaccess.h>" Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> --- drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c index fff8d58..1ab0aea 100644 --- a/drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c +++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c @@ -48,7 +48,7 @@ #include <linux/types.h> #include <linux/wireless.h> #include <linux/etherdevice.h> -#include <asm/uaccess.h> +#include <linux/uaccess.h> #include <linux/if_vlan.h> #include "ieee80211.h" -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Shraddha Barke <shraddha.6596@gmail.com> |
|---|---|
| Date | 2015-09-10 05:40 +0200 |
| Subject | [PATCH 4/5] Staging: rtl8192u: r8192U_core.c: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" |
| Message-ID | <q70Sm-6tp-15@gated-at.bofh.it> |
| In reply to | #1221868 |
Fix checkpatch.pl warning "Use #include <linux/uaccess.h> instead of <asm/uaccess.h>" Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> --- drivers/staging/rtl8192u/r8192U_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c index 577d3a4..cfb0713 100644 --- a/drivers/staging/rtl8192u/r8192U_core.c +++ b/drivers/staging/rtl8192u/r8192U_core.c @@ -58,7 +58,7 @@ double __extendsfdf2(float a) #define CONFIG_RTL8192_IO_MAP -#include <asm/uaccess.h> +#include <linux/uaccess.h> #include "r8192U_hw.h" #include "r8192U.h" #include "r8190_rtl8256.h" /* RTL8225 Radio frontend */ -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
|---|---|
| Date | 2015-09-10 07:20 +0200 |
| Subject | Re: [PATCH 4/5] Staging: rtl8192u: r8192U_core.c: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" |
| Message-ID | <q72r7-nm-1@gated-at.bofh.it> |
| In reply to | #1221869 |
On Thu, Sep 10, 2015 at 09:03:00AM +0530, Shraddha Barke wrote:
> Fix checkpatch.pl warning "Use #include <linux/uaccess.h>
> instead of <asm/uaccess.h>"
>
> Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
> ---
This has already been done by:
f05937c591aa ("staging: rtl8192u: r8192U_core: include linux/uaccess.h instead of asm/uaccess.h")
regards
sudip
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
|---|---|
| Date | 2015-09-10 07:40 +0200 |
| Subject | Re: [PATCH 4/5] Staging: rtl8192u: r8192U_core.c: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" |
| Message-ID | <q72Ku-JM-7@gated-at.bofh.it> |
| In reply to | #1221921 |
On Thu, Sep 10, 2015 at 10:44:17AM +0530, Shraddha Barke wrote: > Oops! Should I send a version 2 of the series dropping this patch? Not required. I hope Greg will see these 3 mails and will not try to apply this patch. But just to be safe reply to the patch asking Greg not to apply that particular patch. regards sudip -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Shraddha Barke <shraddha.6596@gmail.com> |
|---|---|
| Date | 2015-09-10 05:40 +0200 |
| Subject | [PATCH 5/5] Staging: wilc1000: Replace "#include <asm/uaccess>" with "#include <linux/uaccess>" |
| Message-ID | <q70Sm-6tp-13@gated-at.bofh.it> |
| In reply to | #1221868 |
Fix checkpatch.pl warning "Use #include <linux/uaccess.h> instead of <asm/uaccess.h>" Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> --- drivers/staging/wilc1000/linux_wlan_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/linux_wlan_spi.c b/drivers/staging/wilc1000/linux_wlan_spi.c index 236669c..eef7633 100644 --- a/drivers/staging/wilc1000/linux_wlan_spi.c +++ b/drivers/staging/wilc1000/linux_wlan_spi.c @@ -5,7 +5,7 @@ #include <linux/slab.h> #include <linux/types.h> #include <linux/cdev.h> -#include <asm/uaccess.h> +#include <linux/uaccess.h> #include <linux/device.h> #include <linux/spi/spi.h> -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web