Lines Matching refs:rc
68 int rc; in alsa_seq_oss_init() local
70 rc = register_device(); in alsa_seq_oss_init()
71 if (rc < 0) in alsa_seq_oss_init()
73 rc = register_proc(); in alsa_seq_oss_init()
74 if (rc < 0) { in alsa_seq_oss_init()
78 rc = snd_seq_oss_create_client(); in alsa_seq_oss_init()
79 if (rc < 0) { in alsa_seq_oss_init()
85 rc = snd_seq_driver_register(&seq_oss_synth_driver); in alsa_seq_oss_init()
86 if (rc < 0) { in alsa_seq_oss_init()
97 return rc; in alsa_seq_oss_init()
120 int level, rc; in odev_open() local
128 rc = snd_seq_oss_open(file, level); in odev_open()
131 return rc; in odev_open()
175 long rc; in odev_ioctl() local
184 rc = snd_seq_oss_ioctl(dp, cmd, arg); in odev_ioctl()
187 return rc; in odev_ioctl()
230 int rc; in register_device() local
233 rc = snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_SEQUENCER, in register_device()
236 if (rc < 0) { in register_device()
239 return rc; in register_device()
241 rc = snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_MUSIC, in register_device()
244 if (rc < 0) { in register_device()
248 return rc; in register_device()