From 03b2599397efa540983039f7189cc8b8c44a869f Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Wed, 26 Jun 2002 08:53:07 +0000 Subject: [PATCH] don't check the error from running-mode ioctl (for backward compatibility). --- src/seq/seq_hw.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/seq/seq_hw.c b/src/seq/seq_hw.c index 22296b98..af667032 100644 --- a/src/seq/seq_hw.c +++ b/src/seq/seq_hw.c @@ -517,12 +517,7 @@ int snd_seq_hw_open(snd_seq_t **handle, const char *name, int streams, int mode) run_mode.big_endian = 0; #endif run_mode.cpu_mode = sizeof(long); - if (ioctl(fd, SNDRV_SEQ_IOCTL_RUNNING_MODE, &run_mode) < 0) { - int err = errno; - SYSERR("Invalid OS running mode"); - snd_seq_close(seq); - return -err; - } + ioctl(fd, SNDRV_SEQ_IOCTL_RUNNING_MODE, &run_mode); } #endif -- 2.47.1