Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1485464
| From | Peng Sun <sironhide0null@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 7/7] staging: slicoss: slicoss.c: fix different address space sparse warning |
| Date | 2016-09-17 04:10 +0200 |
| Message-ID | <sideN-4J0-5@gated-at.bofh.it> (permalink) |
| References | <sideN-4J0-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: Peng Sun <sironhide0null@gmail.com> --- drivers/staging/slicoss/slicoss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/slicoss/slicoss.c b/drivers/staging/slicoss/slicoss.c index 59c4fbc..abe7592 100644 --- a/drivers/staging/slicoss/slicoss.c +++ b/drivers/staging/slicoss/slicoss.c @@ -2883,7 +2883,7 @@ static int slic_init_adapter(struct net_device *netdev, if (!sm_data) return -ENOMEM; - sm->shmem_data = sm_data; + sm->shmem_data = (struct slic_shmem_data __force __iomem *)sm_data; sm->isr_phaddr = phaddr; sm->lnkstatus_phaddr = phaddr + offsetof(struct slic_shmem_data, lnkstatus); -- 2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 7/7] staging: slicoss: slicoss.c: fix different address space sparse warning Peng Sun <sironhide0null@gmail.com> - 2016-09-17 04:10 +0200 Re: [PATCH 7/7] staging: slicoss: slicoss.c: fix different address space sparse warning Greg KH <gregkh@linuxfoundation.org> - 2016-09-17 10:40 +0200
csiph-web