Commit 2705e647 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] a couple of trivial sound/pci iomem annotations

Signed-off-by: default avatarAl Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 29920f68
......@@ -162,7 +162,7 @@ struct snd_bt87x {
snd_card_t *card;
struct pci_dev *pci;
void *mmio;
void __iomem *mmio;
int irq;
int dig_rate;
......
......@@ -95,7 +95,7 @@ static int get_msg(mixart_mgr_t *mgr, mixart_msg_t *resp, u32 msg_frame_address
}
size -= MSG_DESCRIPTOR_SIZE;
memcpy_fromio(resp->data, (void *)MIXART_MEM(mgr, msg_frame_address + MSG_HEADER_SIZE ), size);
memcpy_fromio(resp->data, MIXART_MEM(mgr, msg_frame_address + MSG_HEADER_SIZE ), size);
resp->size = size;
/* swap if necessary */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment