Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1229391 > unrolled thread
| Started by | Yaowei Bai <bywxiaobai@163.com> |
|---|---|
| First post | 2015-09-21 16:10 +0200 |
| Last post | 2015-09-21 16:20 +0200 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 1/4] sound/onyx: remove redundant case entry Yaowei Bai <bywxiaobai@163.com> - 2015-09-21 16:10 +0200
[PATCH 4/4] sound/core/seq: make prioq_match return bool Yaowei Bai <bywxiaobai@163.com> - 2015-09-21 16:10 +0200
Re: [PATCH 4/4] sound/core/seq: make prioq_match return bool Johannes Berg <johannes@sipsolutions.net> - 2015-09-21 16:20 +0200
[PATCH 2/4] sound/i2sbus/core: make format more appropriate Yaowei Bai <bywxiaobai@163.com> - 2015-09-21 16:20 +0200
| From | Yaowei Bai <bywxiaobai@163.com> |
|---|---|
| Date | 2015-09-21 16:10 +0200 |
| Subject | [PATCH 1/4] sound/onyx: remove redundant case entry |
| Message-ID | <qb9X4-rF-27@gated-at.bofh.it> |
Case ti->tag == 0 can be included in the last return,
remove it.
No functional change.
Signed-off-by: Yaowei Bai <bywxiaobai@163.com>
---
sound/aoa/codecs/onyx.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/sound/aoa/codecs/onyx.c b/sound/aoa/codecs/onyx.c
index a04edff..a407e1f 100644
--- a/sound/aoa/codecs/onyx.c
+++ b/sound/aoa/codecs/onyx.c
@@ -683,7 +683,6 @@ static int onyx_usable(struct codec_info_item *cii,
mutex_unlock(&onyx->mutex);
switch (ti->tag) {
- case 0: return 1;
case 1: return analog_enabled;
case 2: return spdif_enabled;
}
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Yaowei Bai <bywxiaobai@163.com> |
|---|---|
| Date | 2015-09-21 16:10 +0200 |
| Subject | [PATCH 4/4] sound/core/seq: make prioq_match return bool |
| Message-ID | <qb9X5-rF-57@gated-at.bofh.it> |
| In reply to | #1229391 |
This patch makes prioq_match return bool due to this particular
function only using either one or zero as its return value.
No functional change.
Signed-off-by: Yaowei Bai <bywxiaobai@163.com>
---
sound/core/seq/seq_prioq.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/sound/core/seq/seq_prioq.c b/sound/core/seq/seq_prioq.c
index bc1c848..aebae09 100644
--- a/sound/core/seq/seq_prioq.c
+++ b/sound/core/seq/seq_prioq.c
@@ -264,26 +264,26 @@ struct snd_seq_event_cell *snd_seq_prioq_cell_peek(struct snd_seq_prioq * f)
}
-static inline int prioq_match(struct snd_seq_event_cell *cell,
+static inline bool prioq_match(struct snd_seq_event_cell *cell,
int client, int timestamp)
{
if (cell->event.source.client == client ||
cell->event.dest.client == client)
- return 1;
+ return true;
if (!timestamp)
- return 0;
+ return false;
switch (cell->event.flags & SNDRV_SEQ_TIME_STAMP_MASK) {
case SNDRV_SEQ_TIME_STAMP_TICK:
if (cell->event.time.tick)
- return 1;
+ return true;
break;
case SNDRV_SEQ_TIME_STAMP_REAL:
if (cell->event.time.time.tv_sec ||
cell->event.time.time.tv_nsec)
- return 1;
+ return true;
break;
}
- return 0;
+ return false;
}
/* remove cells for left client */
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Johannes Berg <johannes@sipsolutions.net> |
|---|---|
| Date | 2015-09-21 16:20 +0200 |
| Subject | Re: [PATCH 4/4] sound/core/seq: make prioq_match return bool |
| Message-ID | <qba6K-CY-19@gated-at.bofh.it> |
| In reply to | #1229403 |
> -static inline int prioq_match(struct snd_seq_event_cell *cell, > +static inline bool prioq_match(struct snd_seq_event_cell *cell, > int client, int timestamp) I think you should fix up the indentation now. johannes -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Yaowei Bai <bywxiaobai@163.com> |
|---|---|
| Date | 2015-09-21 16:20 +0200 |
| Subject | [PATCH 2/4] sound/i2sbus/core: make format more appropriate |
| Message-ID | <qba6L-CY-25@gated-at.bofh.it> |
| In reply to | #1229391 |
Make 'return' stay in a singe line.
No functional change.
Signed-off-by: Yaowei Bai <bywxiaobai@163.com>
---
sound/aoa/soundbus/i2sbus/core.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sound/aoa/soundbus/i2sbus/core.c b/sound/aoa/soundbus/i2sbus/core.c
index 1cbf210..6f216c0 100644
--- a/sound/aoa/soundbus/i2sbus/core.c
+++ b/sound/aoa/soundbus/i2sbus/core.c
@@ -62,7 +62,8 @@ static int alloc_dbdma_descriptor_ring(struct i2sbus_dev *i2sdev,
static void free_dbdma_descriptor_ring(struct i2sbus_dev *i2sdev,
struct dbdma_command_mem *r)
{
- if (!r->space) return;
+ if (!r->space)
+ return;
dma_free_coherent(&macio_get_pci_dev(i2sdev->macio)->dev,
r->size, r->space, r->bus_addr);
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web