mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
sparc32: Fix sun4c build warnings.
Reported by Stephen Rothwell. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8aef727861
commit
9723f38eb5
@ -1108,7 +1108,7 @@ static void sun4c_unlockarea(char *vaddr, unsigned long size)
|
||||
* by implication and fool the page locking code above
|
||||
* if passed to by mistake.
|
||||
*/
|
||||
static __u32 sun4c_get_scsi_one(char *bufptr, unsigned long len, struct sbus_bus *sbus)
|
||||
static __u32 sun4c_get_scsi_one(struct device *dev, char *bufptr, unsigned long len)
|
||||
{
|
||||
unsigned long page;
|
||||
|
||||
@ -1120,7 +1120,7 @@ static __u32 sun4c_get_scsi_one(char *bufptr, unsigned long len, struct sbus_bus
|
||||
return (__u32)sun4c_lockarea(bufptr, len);
|
||||
}
|
||||
|
||||
static void sun4c_get_scsi_sgl(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
|
||||
static void sun4c_get_scsi_sgl(struct device *dev, struct scatterlist *sg, int sz)
|
||||
{
|
||||
while (sz != 0) {
|
||||
--sz;
|
||||
@ -1130,14 +1130,14 @@ static void sun4c_get_scsi_sgl(struct scatterlist *sg, int sz, struct sbus_bus *
|
||||
}
|
||||
}
|
||||
|
||||
static void sun4c_release_scsi_one(__u32 bufptr, unsigned long len, struct sbus_bus *sbus)
|
||||
static void sun4c_release_scsi_one(struct device *dev, __u32 bufptr, unsigned long len)
|
||||
{
|
||||
if (bufptr < sun4c_iobuffer_start)
|
||||
return; /* On kernel stack or similar, see above */
|
||||
sun4c_unlockarea((char *)bufptr, len);
|
||||
}
|
||||
|
||||
static void sun4c_release_scsi_sgl(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
|
||||
static void sun4c_release_scsi_sgl(struct device *dev, struct scatterlist *sg, int sz)
|
||||
{
|
||||
while (sz != 0) {
|
||||
--sz;
|
||||
|
Loading…
Reference in New Issue
Block a user