aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2010-04-13 05:22:01 -0400
committerTakashi Iwai <tiwai@suse.de>2010-04-13 05:57:14 -0400
commit24e4a1211f691fc671de44685430dbad757d8487 (patch)
tree904e30d3a24f9b0f28378c72f0924fc1e429f5f2 /sound/pci
parent067e4a5d23422c9e9a0787b7e18fa2457226d999 (diff)
ALSA: info - Use standard types for info callbacks
Use loff_t, size_t and ssize_t for arguments of info callbacks to follow the standard procfs. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/cs4281.c16
-rw-r--r--sound/pci/cs46xx/cs46xx_lib.c7
-rw-r--r--sound/pci/emu10k1/emuproc.c8
-rw-r--r--sound/pci/mixart/mixart.c32
4 files changed, 32 insertions, 31 deletions
diff --git a/sound/pci/cs4281.c b/sound/pci/cs4281.c
index 9edc65059e3..b0bba2e86b1 100644
--- a/sound/pci/cs4281.c
+++ b/sound/pci/cs4281.c
@@ -1139,10 +1139,10 @@ static void snd_cs4281_proc_read(struct snd_info_entry *entry,
1139 snd_iprintf(buffer, "Spurious end IRQs : %u\n", chip->spurious_dtc_irq); 1139 snd_iprintf(buffer, "Spurious end IRQs : %u\n", chip->spurious_dtc_irq);
1140} 1140}
1141 1141
1142static long snd_cs4281_BA0_read(struct snd_info_entry *entry, 1142static ssize_t snd_cs4281_BA0_read(struct snd_info_entry *entry,
1143 void *file_private_data, 1143 void *file_private_data,
1144 struct file *file, char __user *buf, 1144 struct file *file, char __user *buf,
1145 unsigned long count, unsigned long pos) 1145 size_t count, loff_t pos)
1146{ 1146{
1147 long size; 1147 long size;
1148 struct cs4281 *chip = entry->private_data; 1148 struct cs4281 *chip = entry->private_data;
@@ -1157,10 +1157,10 @@ static long snd_cs4281_BA0_read(struct snd_info_entry *entry,
1157 return size; 1157 return size;
1158} 1158}
1159 1159
1160static long snd_cs4281_BA1_read(struct snd_info_entry *entry, 1160static ssize_t snd_cs4281_BA1_read(struct snd_info_entry *entry,
1161 void *file_private_data, 1161 void *file_private_data,
1162 struct file *file, char __user *buf, 1162 struct file *file, char __user *buf,
1163 unsigned long count, unsigned long pos) 1163 size_t count, loff_t pos)
1164{ 1164{
1165 long size; 1165 long size;
1166 struct cs4281 *chip = entry->private_data; 1166 struct cs4281 *chip = entry->private_data;
diff --git a/sound/pci/cs46xx/cs46xx_lib.c b/sound/pci/cs46xx/cs46xx_lib.c
index 3f99a5e8528..08117b14238 100644
--- a/sound/pci/cs46xx/cs46xx_lib.c
+++ b/sound/pci/cs46xx/cs46xx_lib.c
@@ -2657,9 +2657,10 @@ static inline void snd_cs46xx_remove_gameport(struct snd_cs46xx *chip) { }
2657 * proc interface 2657 * proc interface
2658 */ 2658 */
2659 2659
2660static long snd_cs46xx_io_read(struct snd_info_entry *entry, void *file_private_data, 2660static ssize_t snd_cs46xx_io_read(struct snd_info_entry *entry,
2661 struct file *file, char __user *buf, 2661 void *file_private_data,
2662 unsigned long count, unsigned long pos) 2662 struct file *file, char __user *buf,
2663 size_t count, loff_t pos)
2663{ 2664{
2664 long size; 2665 long size;
2665 struct snd_cs46xx_region *region = entry->private_data; 2666 struct snd_cs46xx_region *region = entry->private_data;
diff --git a/sound/pci/emu10k1/emuproc.c b/sound/pci/emu10k1/emuproc.c
index baa7cd508cd..347b2415db5 100644
--- a/sound/pci/emu10k1/emuproc.c
+++ b/sound/pci/emu10k1/emuproc.c
@@ -341,10 +341,10 @@ static void snd_emu10k1_proc_acode_read(struct snd_info_entry *entry,
341#define TOTAL_SIZE_CODE (0x200*8) 341#define TOTAL_SIZE_CODE (0x200*8)
342#define A_TOTAL_SIZE_CODE (0x400*8) 342#define A_TOTAL_SIZE_CODE (0x400*8)
343 343
344static long snd_emu10k1_fx8010_read(struct snd_info_entry *entry, 344static ssize_t snd_emu10k1_fx8010_read(struct snd_info_entry *entry,
345 void *file_private_data, 345 void *file_private_data,
346 struct file *file, char __user *buf, 346 struct file *file, char __user *buf,
347 unsigned long count, unsigned long pos) 347 size_t count, loff_t pos)
348{ 348{
349 long size; 349 long size;
350 struct snd_emu10k1 *emu = entry->private_data; 350 struct snd_emu10k1 *emu = entry->private_data;
diff --git a/sound/pci/mixart/mixart.c b/sound/pci/mixart/mixart.c
index 3be8f97c8bc..b5df78bcc25 100644
--- a/sound/pci/mixart/mixart.c
+++ b/sound/pci/mixart/mixart.c
@@ -1102,11 +1102,10 @@ static int snd_mixart_free(struct mixart_mgr *mgr)
1102/* 1102/*
1103 * proc interface 1103 * proc interface
1104 */ 1104 */
1105static long long snd_mixart_BA0_llseek(struct snd_info_entry *entry, 1105static loff_t snd_mixart_BA0_llseek(struct snd_info_entry *entry,
1106 void *private_file_data, 1106 void *private_file_data,
1107 struct file *file, 1107 struct file *file,
1108 long long offset, 1108 loff_t offset, int orig)
1109 int orig)
1110{ 1109{
1111 offset = offset & ~3; /* 4 bytes aligned */ 1110 offset = offset & ~3; /* 4 bytes aligned */
1112 1111
@@ -1128,11 +1127,10 @@ static long long snd_mixart_BA0_llseek(struct snd_info_entry *entry,
1128 return file->f_pos; 1127 return file->f_pos;
1129} 1128}
1130 1129
1131static long long snd_mixart_BA1_llseek(struct snd_info_entry *entry, 1130static loff_t snd_mixart_BA1_llseek(struct snd_info_entry *entry,
1132 void *private_file_data, 1131 void *private_file_data,
1133 struct file *file, 1132 struct file *file,
1134 long long offset, 1133 loff_t offset, int orig)
1135 int orig)
1136{ 1134{
1137 offset = offset & ~3; /* 4 bytes aligned */ 1135 offset = offset & ~3; /* 4 bytes aligned */
1138 1136
@@ -1157,9 +1155,10 @@ static long long snd_mixart_BA1_llseek(struct snd_info_entry *entry,
1157/* 1155/*
1158 mixart_BA0 proc interface for BAR 0 - read callback 1156 mixart_BA0 proc interface for BAR 0 - read callback
1159 */ 1157 */
1160static long snd_mixart_BA0_read(struct snd_info_entry *entry, void *file_private_data, 1158static ssize_t snd_mixart_BA0_read(struct snd_info_entry *entry,
1161 struct file *file, char __user *buf, 1159 void *file_private_data,
1162 unsigned long count, unsigned long pos) 1160 struct file *file, char __user *buf,
1161 size_t count, loff_t pos)
1163{ 1162{
1164 struct mixart_mgr *mgr = entry->private_data; 1163 struct mixart_mgr *mgr = entry->private_data;
1165 unsigned long maxsize; 1164 unsigned long maxsize;
@@ -1178,9 +1177,10 @@ static long snd_mixart_BA0_read(struct snd_info_entry *entry, void *file_private
1178/* 1177/*
1179 mixart_BA1 proc interface for BAR 1 - read callback 1178 mixart_BA1 proc interface for BAR 1 - read callback
1180 */ 1179 */
1181static long snd_mixart_BA1_read(struct snd_info_entry *entry, void *file_private_data, 1180static ssize_t snd_mixart_BA1_read(struct snd_info_entry *entry,
1182 struct file *file, char __user *buf, 1181 void *file_private_data,
1183 unsigned long count, unsigned long pos) 1182 struct file *file, char __user *buf,
1183 size_t count, loff_t pos)
1184{ 1184{
1185 struct mixart_mgr *mgr = entry->private_data; 1185 struct mixart_mgr *mgr = entry->private_data;
1186 unsigned long maxsize; 1186 unsigned long maxsize;