Skip to content

Commit

Permalink
[PATCH] m68k: lvalues abuse in dmasound
Browse files Browse the repository at this point in the history
Cast is not an lvalue

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jan 12, 2006
1 parent 815f597 commit 3756513
Showing 1 changed file with 36 additions and 18 deletions.
54 changes: 36 additions & 18 deletions sound/oss/dmasound/dmasound_atari.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,9 @@ static ssize_t ata_ct_u8(const u_char *userPtr, size_t userCount,
used = count*2;
while (count > 0) {
u_short data;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
*p++ = data ^ 0x8080;
count--;
}
Expand All @@ -240,8 +241,9 @@ static ssize_t ata_ct_s16be(const u_char *userPtr, size_t userCount,
used = count*2;
while (count > 0) {
u_short data;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
*p++ = data;
*p++ = data;
count--;
Expand Down Expand Up @@ -271,8 +273,9 @@ static ssize_t ata_ct_u16be(const u_char *userPtr, size_t userCount,
used = count*2;
while (count > 0) {
u_short data;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
data ^= 0x8000;
*p++ = data;
*p++ = data;
Expand All @@ -285,8 +288,9 @@ static ssize_t ata_ct_u16be(const u_char *userPtr, size_t userCount,
used = count*4;
while (count > 0) {
u_long data;
if (get_user(data, ((u_int *)userPtr)++))
if (get_user(data, (u_int *)userPtr))
return -EFAULT;
userPtr += 4;
*p++ = data ^ 0x80008000;
count--;
}
Expand All @@ -309,8 +313,9 @@ static ssize_t ata_ct_s16le(const u_char *userPtr, size_t userCount,
used = count*2;
while (count > 0) {
u_short data;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
data = le2be16(data);
*p++ = data;
*p++ = data;
Expand All @@ -323,8 +328,9 @@ static ssize_t ata_ct_s16le(const u_char *userPtr, size_t userCount,
used = count*4;
while (count > 0) {
u_long data;
if (get_user(data, ((u_int *)userPtr)++))
if (get_user(data, (u_int *)userPtr))
return -EFAULT;
userPtr += 4;
data = le2be16dbl(data);
*p++ = data;
count--;
Expand All @@ -348,8 +354,9 @@ static ssize_t ata_ct_u16le(const u_char *userPtr, size_t userCount,
used = count*2;
while (count > 0) {
u_short data;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
data = le2be16(data) ^ 0x8000;
*p++ = data;
*p++ = data;
Expand All @@ -361,8 +368,9 @@ static ssize_t ata_ct_u16le(const u_char *userPtr, size_t userCount,
used = count;
while (count > 0) {
u_long data;
if (get_user(data, ((u_int *)userPtr)++))
if (get_user(data, (u_int *)userPtr))
return -EFAULT;
userPtr += 4;
data = le2be16dbl(data) ^ 0x80008000;
*p++ = data;
count--;
Expand Down Expand Up @@ -470,8 +478,9 @@ static ssize_t ata_ctx_s8(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 2)
break;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
userCount -= 2;
bal += hSpeed;
}
Expand Down Expand Up @@ -524,8 +533,9 @@ static ssize_t ata_ctx_u8(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 2)
break;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
data ^= 0x8080;
userCount -= 2;
bal += hSpeed;
Expand Down Expand Up @@ -561,8 +571,9 @@ static ssize_t ata_ctx_s16be(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 2)
break;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
userCount -= 2;
bal += hSpeed;
}
Expand All @@ -579,8 +590,9 @@ static ssize_t ata_ctx_s16be(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 4)
break;
if (get_user(data, ((u_int *)userPtr)++))
if (get_user(data, (u_int *)userPtr))
return -EFAULT;
userPtr += 4;
userCount -= 4;
bal += hSpeed;
}
Expand Down Expand Up @@ -615,8 +627,9 @@ static ssize_t ata_ctx_u16be(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 2)
break;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
data ^= 0x8000;
userCount -= 2;
bal += hSpeed;
Expand All @@ -634,8 +647,9 @@ static ssize_t ata_ctx_u16be(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 4)
break;
if (get_user(data, ((u_int *)userPtr)++))
if (get_user(data, (u_int *)userPtr))
return -EFAULT;
userPtr += 4;
data ^= 0x80008000;
userCount -= 4;
bal += hSpeed;
Expand Down Expand Up @@ -671,8 +685,9 @@ static ssize_t ata_ctx_s16le(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 2)
break;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
data = le2be16(data);
userCount -= 2;
bal += hSpeed;
Expand All @@ -690,8 +705,9 @@ static ssize_t ata_ctx_s16le(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 4)
break;
if (get_user(data, ((u_int *)userPtr)++))
if (get_user(data, (u_int *)userPtr))
return -EFAULT;
userPtr += 4;
data = le2be16dbl(data);
userCount -= 4;
bal += hSpeed;
Expand Down Expand Up @@ -727,8 +743,9 @@ static ssize_t ata_ctx_u16le(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 2)
break;
if (get_user(data, ((u_short *)userPtr)++))
if (get_user(data, (u_short *)userPtr))
return -EFAULT;
userPtr += 2;
data = le2be16(data) ^ 0x8000;
userCount -= 2;
bal += hSpeed;
Expand All @@ -746,8 +763,9 @@ static ssize_t ata_ctx_u16le(const u_char *userPtr, size_t userCount,
if (bal < 0) {
if (userCount < 4)
break;
if (get_user(data, ((u_int *)userPtr)++))
if (get_user(data, (u_int *)userPtr))
return -EFAULT;
userPtr += 4;
data = le2be16dbl(data) ^ 0x80008000;
userCount -= 4;
bal += hSpeed;
Expand Down

0 comments on commit 3756513

Please sign in to comment.