* [PATCH 2/2] staging: dgap: Fixed sparse error: same symbol redeclared with different type
@ 2014-03-09 7:18 Masood Mehmood
2014-03-10 18:37 ` Greg KH
0 siblings, 1 reply; 5+ messages in thread
From: Masood Mehmood @ 2014-03-09 7:18 UTC (permalink / raw)
To: gregkh; +Cc: lidza.louina, devel, linux-kernel
sparse reported dgap_do_fep_load is redeclared with different type. while
fixing, I noticed __user attribute is used incorrectly in declaration.
There is no need to define __user for firware->data.
Replaced the __user with 'const uchar *' from function dgap_do_fep_load and
did the same for function dgap_do_bios_load.
Signed-off-by: Masood Mehmood <ody.guru@gmail.com>
---
drivers/staging/dgap/dgap.c | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c
index d00283a..ab81479 100644
--- a/drivers/staging/dgap/dgap.c
+++ b/drivers/staging/dgap/dgap.c
@@ -210,9 +210,8 @@ static uint dgap_config_get_useintr(struct board_t *bd);
static uint dgap_config_get_altpin(struct board_t *bd);
static int dgap_ms_sleep(ulong ms);
-static void dgap_do_bios_load(struct board_t *brd, uchar __user *ubios,
- int len);
-static void dgap_do_fep_load(struct board_t *brd, uchar __user *ufep, int len);
+static void dgap_do_bios_load(struct board_t *brd, const uchar *ubios, int len);
+static void dgap_do_fep_load(struct board_t *brd, const uchar *ufep, int len);
#ifdef DIGI_CONCENTRATORS_SUPPORTED
static void dgap_do_conc_load(struct board_t *brd, uchar *uaddr, int len);
#endif
@@ -935,7 +934,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type)
fw_info[card_type].bios_name);
return ret;
}
- dgap_do_bios_load(brd, (char *)fw->data, fw->size);
+ dgap_do_bios_load(brd, fw->data, fw->size);
release_firmware(fw);
/* Wait for BIOS to test board... */
@@ -953,7 +952,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type)
fw_info[card_type].fep_name);
return ret;
}
- dgap_do_fep_load(brd, (char *)fw->data, fw->size);
+ dgap_do_fep_load(brd, fw->data, fw->size);
release_firmware(fw);
/* Wait for FEP to load on board... */
@@ -4349,7 +4348,7 @@ static int dgap_tty_register_ports(struct board_t *brd)
* Copies the BIOS code from the user to the board,
* and starts the BIOS running.
*/
-static void dgap_do_bios_load(struct board_t *brd, uchar __user *ubios, int len)
+static void dgap_do_bios_load(struct board_t *brd, const uchar *ubios, int len)
{
uchar *addr;
uint offset;
@@ -4425,7 +4424,7 @@ static void dgap_do_wait_for_bios(struct board_t *brd)
* Copies the FEP code from the user to the board,
* and starts the FEP running.
*/
-static void dgap_do_fep_load(struct board_t *brd, uchar *ufep, int len)
+static void dgap_do_fep_load(struct board_t *brd, const uchar *ufep, int len)
{
uchar *addr;
uint offset;
--
1.8.3.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] staging: dgap: Fixed sparse error: same symbol redeclared with different type
2014-03-10 18:37 ` Greg KH
@ 2014-03-09 8:33 ` Masood Mehmood
2014-03-10 19:34 ` Greg KH
0 siblings, 1 reply; 5+ messages in thread
From: Masood Mehmood @ 2014-03-09 8:33 UTC (permalink / raw)
To: Greg KH; +Cc: devel, lidza.louina, linux-kernel
On Mon, Mar 10, 2014 at 11:37:12AM -0700, Greg KH wrote:
> On Sat, Mar 08, 2014 at 11:18:42PM -0800, Masood Mehmood wrote:
> > 1 file changed, 6 insertions(+), 7 deletions(-)
>
> I don't see a patch 1/2 here, did you forget to send it to me?
Patch 1/2 has some unrelated changes. My bad, I forgot to remove it before
sending. Should I send a new patch or it will work as it is?
Thanks,
--
Masood
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] staging: dgap: Fixed sparse error: same symbol redeclared with different type
2014-03-10 19:34 ` Greg KH
@ 2014-03-09 8:57 ` Masood Mehmood
0 siblings, 0 replies; 5+ messages in thread
From: Masood Mehmood @ 2014-03-09 8:57 UTC (permalink / raw)
To: Greg KH; +Cc: devel, lidza.louina, linux-kernel
On Mon, Mar 10, 2014 at 12:34:22PM -0700, Greg KH wrote:
> On Sun, Mar 09, 2014 at 12:33:32AM -0800, Masood Mehmood wrote:
> > On Mon, Mar 10, 2014 at 11:37:12AM -0700, Greg KH wrote:
> > > On Sat, Mar 08, 2014 at 11:18:42PM -0800, Masood Mehmood wrote:
> > > > 1 file changed, 6 insertions(+), 7 deletions(-)
> > >
> > > I don't see a patch 1/2 here, did you forget to send it to me?
> >
> > Patch 1/2 has some unrelated changes. My bad, I forgot to remove it before
> > sending. Should I send a new patch or it will work as it is?
>
> Please resend, otherwise I'll be confused again when I go to look at
> patches to apply in a day or so...
No poblem, resending it now.
Thanks,
--Masood
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] staging: dgap: Fixed sparse error: same symbol redeclared with different type
2014-03-09 7:18 [PATCH 2/2] staging: dgap: Fixed sparse error: same symbol redeclared with different type Masood Mehmood
@ 2014-03-10 18:37 ` Greg KH
2014-03-09 8:33 ` Masood Mehmood
0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2014-03-10 18:37 UTC (permalink / raw)
To: Masood Mehmood; +Cc: devel, lidza.louina, linux-kernel
On Sat, Mar 08, 2014 at 11:18:42PM -0800, Masood Mehmood wrote:
> sparse reported dgap_do_fep_load is redeclared with different type. while
> fixing, I noticed __user attribute is used incorrectly in declaration.
> There is no need to define __user for firware->data.
>
> Replaced the __user with 'const uchar *' from function dgap_do_fep_load and
> did the same for function dgap_do_bios_load.
>
> Signed-off-by: Masood Mehmood <ody.guru@gmail.com>
> ---
> drivers/staging/dgap/dgap.c | 13 ++++++-------
> 1 file changed, 6 insertions(+), 7 deletions(-)
I don't see a patch 1/2 here, did you forget to send it to me?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] staging: dgap: Fixed sparse error: same symbol redeclared with different type
2014-03-09 8:33 ` Masood Mehmood
@ 2014-03-10 19:34 ` Greg KH
2014-03-09 8:57 ` Masood Mehmood
0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2014-03-10 19:34 UTC (permalink / raw)
To: Masood Mehmood; +Cc: devel, lidza.louina, linux-kernel
On Sun, Mar 09, 2014 at 12:33:32AM -0800, Masood Mehmood wrote:
> On Mon, Mar 10, 2014 at 11:37:12AM -0700, Greg KH wrote:
> > On Sat, Mar 08, 2014 at 11:18:42PM -0800, Masood Mehmood wrote:
> > > 1 file changed, 6 insertions(+), 7 deletions(-)
> >
> > I don't see a patch 1/2 here, did you forget to send it to me?
>
> Patch 1/2 has some unrelated changes. My bad, I forgot to remove it before
> sending. Should I send a new patch or it will work as it is?
Please resend, otherwise I'll be confused again when I go to look at
patches to apply in a day or so...
thanks,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-03-10 19:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-09 7:18 [PATCH 2/2] staging: dgap: Fixed sparse error: same symbol redeclared with different type Masood Mehmood
2014-03-10 18:37 ` Greg KH
2014-03-09 8:33 ` Masood Mehmood
2014-03-10 19:34 ` Greg KH
2014-03-09 8:57 ` Masood Mehmood
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.