Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1344311 > unrolled thread
| Started by | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| First post | 2016-02-26 15:40 +0100 |
| Last post | 2016-03-01 02:10 +0100 |
| Articles | 5 — 5 participants |
Back to article view | Back to linux.kernel
[PATCH] asm-generic: remove old nonatomic-io wrapper files Arnd Bergmann <arnd@arndb.de> - 2016-02-26 15:40 +0100
Re: [PATCH] asm-generic: remove old nonatomic-io wrapper files Christoph Hellwig <hch@lst.de> - 2016-02-28 10:20 +0100
Re: [PATCH] asm-generic: remove old nonatomic-io wrapper files Vinod Koul <vinod.koul@intel.com> - 2016-02-29 07:10 +0100
Re: [PATCH] asm-generic: remove old nonatomic-io wrapper files Simon Horman <simon.horman@netronome.com> - 2016-03-01 01:20 +0100
Re: [PATCH] asm-generic: remove old nonatomic-io wrapper files Yisen Zhuang <Yisen.zhuang@huawei.com> - 2016-03-01 02:10 +0100
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-02-26 15:40 +0100 |
| Subject | [PATCH] asm-generic: remove old nonatomic-io wrapper files |
| Message-ID | <r6rIK-4Ch-31@gated-at.bofh.it> |
The two header files got moved to include/linux, and most users were already converted, this changes the remaining drivers and removes the files. Signed-off-by: Arnd Bergmann <arnd@arndb.de> --- drivers/dma/idma64.h | 2 +- drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c | 2 +- drivers/net/ethernet/netronome/nfp/nfp_net.h | 2 +- include/asm-generic/io-64-nonatomic-hi-lo.h | 2 -- include/asm-generic/io-64-nonatomic-lo-hi.h | 2 -- 5 files changed, 3 insertions(+), 7 deletions(-) delete mode 100644 include/asm-generic/io-64-nonatomic-hi-lo.h delete mode 100644 include/asm-generic/io-64-nonatomic-lo-hi.h diff --git a/drivers/dma/idma64.h b/drivers/dma/idma64.h index 8423f13ed0da..a52ad6bcf86a 100644 --- a/drivers/dma/idma64.h +++ b/drivers/dma/idma64.h @@ -16,7 +16,7 @@ #include <linux/spinlock.h> #include <linux/types.h> -#include <asm-generic/io-64-nonatomic-lo-hi.h> +#include <linux/io-64-nonatomic-lo-hi.h> #include "virt-dma.h" diff --git a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c index 802d55457f19..fd90f3737963 100644 --- a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c +++ b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c @@ -7,7 +7,7 @@ * (at your option) any later version. */ -#include <asm-generic/io-64-nonatomic-hi-lo.h> +#include <linux/io-64-nonatomic-hi-lo.h> #include <linux/of_mdio.h> #include "hns_dsaf_main.h" #include "hns_dsaf_mac.h" diff --git a/drivers/net/ethernet/netronome/nfp/nfp_net.h b/drivers/net/ethernet/netronome/nfp/nfp_net.h index ab264e1bccd0..75683fb26734 100644 --- a/drivers/net/ethernet/netronome/nfp/nfp_net.h +++ b/drivers/net/ethernet/netronome/nfp/nfp_net.h @@ -45,7 +45,7 @@ #include <linux/interrupt.h> #include <linux/netdevice.h> #include <linux/pci.h> -#include <asm-generic/io-64-nonatomic-hi-lo.h> +#include <linux/io-64-nonatomic-hi-lo.h> #include "nfp_net_ctrl.h" diff --git a/include/asm-generic/io-64-nonatomic-hi-lo.h b/include/asm-generic/io-64-nonatomic-hi-lo.h deleted file mode 100644 index 32b73abce1b0..000000000000 --- a/include/asm-generic/io-64-nonatomic-hi-lo.h +++ /dev/null @@ -1,2 +0,0 @@ -/* XXX: delete asm-generic/io-64-nonatomic-hi-lo.h after converting new users */ -#include <linux/io-64-nonatomic-hi-lo.h> diff --git a/include/asm-generic/io-64-nonatomic-lo-hi.h b/include/asm-generic/io-64-nonatomic-lo-hi.h deleted file mode 100644 index 55a627c37721..000000000000 --- a/include/asm-generic/io-64-nonatomic-lo-hi.h +++ /dev/null @@ -1,2 +0,0 @@ -/* XXX: delete asm-generic/io-64-nonatomic-lo-hi.h after converting new users */ -#include <linux/io-64-nonatomic-lo-hi.h> -- 2.7.0
[toc] | [next] | [standalone]
| From | Christoph Hellwig <hch@lst.de> |
|---|---|
| Date | 2016-02-28 10:20 +0100 |
| Message-ID | <r75G9-9z-7@gated-at.bofh.it> |
| In reply to | #1344311 |
Thanks Arnd, this looks good to me: Reviewed-by: Christoph Hellwig <hch@lst.de>
[toc] | [prev] | [next] | [standalone]
| From | Vinod Koul <vinod.koul@intel.com> |
|---|---|
| Date | 2016-02-29 07:10 +0100 |
| Message-ID | <r7pbQ-6Z8-3@gated-at.bofh.it> |
| In reply to | #1344311 |
On Fri, Feb 26, 2016 at 03:29:05PM +0100, Arnd Bergmann wrote: > The two header files got moved to include/linux, and most > users were already converted, this changes the remaining drivers > and removes the files. > > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > --- > drivers/dma/idma64.h | 2 +- For this: Acked-by: Vinod Koul <vinod.koul@intel.com> Thanks -- ~Vinod
[toc] | [prev] | [next] | [standalone]
| From | Simon Horman <simon.horman@netronome.com> |
|---|---|
| Date | 2016-03-01 01:20 +0100 |
| Message-ID | <r7GcG-1Fc-5@gated-at.bofh.it> |
| In reply to | #1344311 |
On Fri, Feb 26, 2016 at 03:29:05PM +0100, Arnd Bergmann wrote: > The two header files got moved to include/linux, and most > users were already converted, this changes the remaining drivers > and removes the files. > > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > --- > drivers/dma/idma64.h | 2 +- > drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c | 2 +- > drivers/net/ethernet/netronome/nfp/nfp_net.h | 2 +- The NFP portion: Acked-by: Simon Horman <simon.horman@netronome.com> > include/asm-generic/io-64-nonatomic-hi-lo.h | 2 -- > include/asm-generic/io-64-nonatomic-lo-hi.h | 2 -- > 5 files changed, 3 insertions(+), 7 deletions(-) > delete mode 100644 include/asm-generic/io-64-nonatomic-hi-lo.h > delete mode 100644 include/asm-generic/io-64-nonatomic-lo-hi.h
[toc] | [prev] | [next] | [standalone]
| From | Yisen Zhuang <Yisen.zhuang@huawei.com> |
|---|---|
| Date | 2016-03-01 02:10 +0100 |
| Message-ID | <r7GZ4-2bL-1@gated-at.bofh.it> |
| In reply to | #1344311 |
在 2016/2/26 22:29, Arnd Bergmann 写道: > The two header files got moved to include/linux, and most > users were already converted, this changes the remaining drivers > and removes the files. > > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > --- > drivers/dma/idma64.h | 2 +- > drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c | 2 +- The HNS portion: Acked-by: Yisen Zhuang <yisen.zhuang@huawei.com> > drivers/net/ethernet/netronome/nfp/nfp_net.h | 2 +- > include/asm-generic/io-64-nonatomic-hi-lo.h | 2 -- > include/asm-generic/io-64-nonatomic-lo-hi.h | 2 -- > 5 files changed, 3 insertions(+), 7 deletions(-) > delete mode 100644 include/asm-generic/io-64-nonatomic-hi-lo.h > delete mode 100644 include/asm-generic/io-64-nonatomic-lo-hi.h > > diff --git a/drivers/dma/idma64.h b/drivers/dma/idma64.h > index 8423f13ed0da..a52ad6bcf86a 100644 > --- a/drivers/dma/idma64.h > +++ b/drivers/dma/idma64.h > @@ -16,7 +16,7 @@ > #include <linux/spinlock.h> > #include <linux/types.h> > > -#include <asm-generic/io-64-nonatomic-lo-hi.h> > +#include <linux/io-64-nonatomic-lo-hi.h> > > #include "virt-dma.h" > > diff --git a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c > index 802d55457f19..fd90f3737963 100644 > --- a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c > +++ b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c > @@ -7,7 +7,7 @@ > * (at your option) any later version. > */ > > -#include <asm-generic/io-64-nonatomic-hi-lo.h> > +#include <linux/io-64-nonatomic-hi-lo.h> > #include <linux/of_mdio.h> > #include "hns_dsaf_main.h" > #include "hns_dsaf_mac.h" > diff --git a/drivers/net/ethernet/netronome/nfp/nfp_net.h b/drivers/net/ethernet/netronome/nfp/nfp_net.h > index ab264e1bccd0..75683fb26734 100644 > --- a/drivers/net/ethernet/netronome/nfp/nfp_net.h > +++ b/drivers/net/ethernet/netronome/nfp/nfp_net.h > @@ -45,7 +45,7 @@ > #include <linux/interrupt.h> > #include <linux/netdevice.h> > #include <linux/pci.h> > -#include <asm-generic/io-64-nonatomic-hi-lo.h> > +#include <linux/io-64-nonatomic-hi-lo.h> > > #include "nfp_net_ctrl.h" > > diff --git a/include/asm-generic/io-64-nonatomic-hi-lo.h b/include/asm-generic/io-64-nonatomic-hi-lo.h > deleted file mode 100644 > index 32b73abce1b0..000000000000 > --- a/include/asm-generic/io-64-nonatomic-hi-lo.h > +++ /dev/null > @@ -1,2 +0,0 @@ > -/* XXX: delete asm-generic/io-64-nonatomic-hi-lo.h after converting new users */ > -#include <linux/io-64-nonatomic-hi-lo.h> > diff --git a/include/asm-generic/io-64-nonatomic-lo-hi.h b/include/asm-generic/io-64-nonatomic-lo-hi.h > deleted file mode 100644 > index 55a627c37721..000000000000 > --- a/include/asm-generic/io-64-nonatomic-lo-hi.h > +++ /dev/null > @@ -1,2 +0,0 @@ > -/* XXX: delete asm-generic/io-64-nonatomic-lo-hi.h after converting new users */ > -#include <linux/io-64-nonatomic-lo-hi.h> >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web