* [PATCH 0/2] ASoC: omap: Fix enum ctl accesses
@ 2016-02-29 16:26 Takashi Iwai
2016-02-29 16:26 ` [PATCH 1/2] ASoC: omap: n810: Fix enum ctl accesses in a wrong type Takashi Iwai
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Takashi Iwai @ 2016-02-29 16:26 UTC (permalink / raw)
To: alsa-devel; +Cc: Peter Ujfalusi, Mark Brown, Liam Girdwood, Jarkko Nikula
Hi,
here is a patchset to correct the wrong type accesses in omap drivers
for enum ctls. I didn't put Cc to stable for them, supposing these
are only for 32bit systems. If not, feel free to put Cc to stable.
thanks,
Takashi
===
Takashi Iwai (2):
ASoC: omap: n810: Fix enum ctl accesses in a wrong type
ASoC: omap: rx51: Fix enum ctl accesses in a wrong type
sound/soc/omap/n810.c | 18 +++++++++---------
sound/soc/omap/rx51.c | 18 +++++++++---------
2 files changed, 18 insertions(+), 18 deletions(-)
--
2.7.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/2] ASoC: omap: n810: Fix enum ctl accesses in a wrong type
2016-02-29 16:26 [PATCH 0/2] ASoC: omap: Fix enum ctl accesses Takashi Iwai
@ 2016-02-29 16:26 ` Takashi Iwai
2016-03-01 3:24 ` Applied "ASoC: omap: n810: Fix enum ctl accesses in a wrong type" to the asoc tree Mark Brown
2016-02-29 16:26 ` [PATCH 2/2] ASoC: omap: rx51: Fix enum ctl accesses in a wrong type Takashi Iwai
2016-02-29 20:16 ` [PATCH 0/2] ASoC: omap: Fix enum ctl accesses Jarkko Nikula
2 siblings, 1 reply; 7+ messages in thread
From: Takashi Iwai @ 2016-02-29 16:26 UTC (permalink / raw)
To: alsa-devel; +Cc: Peter Ujfalusi, Mark Brown, Liam Girdwood, Jarkko Nikula
"Jack Function", "Speaker Function" and "Input Select" ctls in n810
driver are enum, while the current driver accesses wrongly via
value.integer.value[]. They have to be via value.enumerated.item[]
instead.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
sound/soc/omap/n810.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/sound/soc/omap/n810.c b/sound/soc/omap/n810.c
index 190f868e78b2..fdecb7043174 100644
--- a/sound/soc/omap/n810.c
+++ b/sound/soc/omap/n810.c
@@ -133,7 +133,7 @@ static struct snd_soc_ops n810_ops = {
static int n810_get_spk(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = n810_spk_func;
+ ucontrol->value.enumerated.item[0] = n810_spk_func;
return 0;
}
@@ -143,10 +143,10 @@ static int n810_set_spk(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (n810_spk_func == ucontrol->value.integer.value[0])
+ if (n810_spk_func == ucontrol->value.enumerated.item[0])
return 0;
- n810_spk_func = ucontrol->value.integer.value[0];
+ n810_spk_func = ucontrol->value.enumerated.item[0];
n810_ext_control(&card->dapm);
return 1;
@@ -155,7 +155,7 @@ static int n810_set_spk(struct snd_kcontrol *kcontrol,
static int n810_get_jack(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = n810_jack_func;
+ ucontrol->value.enumerated.item[0] = n810_jack_func;
return 0;
}
@@ -165,10 +165,10 @@ static int n810_set_jack(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (n810_jack_func == ucontrol->value.integer.value[0])
+ if (n810_jack_func == ucontrol->value.enumerated.item[0])
return 0;
- n810_jack_func = ucontrol->value.integer.value[0];
+ n810_jack_func = ucontrol->value.enumerated.item[0];
n810_ext_control(&card->dapm);
return 1;
@@ -177,7 +177,7 @@ static int n810_set_jack(struct snd_kcontrol *kcontrol,
static int n810_get_input(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = n810_dmic_func;
+ ucontrol->value.enumerated.item[0] = n810_dmic_func;
return 0;
}
@@ -187,10 +187,10 @@ static int n810_set_input(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (n810_dmic_func == ucontrol->value.integer.value[0])
+ if (n810_dmic_func == ucontrol->value.enumerated.item[0])
return 0;
- n810_dmic_func = ucontrol->value.integer.value[0];
+ n810_dmic_func = ucontrol->value.enumerated.item[0];
n810_ext_control(&card->dapm);
return 1;
--
2.7.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] ASoC: omap: rx51: Fix enum ctl accesses in a wrong type
2016-02-29 16:26 [PATCH 0/2] ASoC: omap: Fix enum ctl accesses Takashi Iwai
2016-02-29 16:26 ` [PATCH 1/2] ASoC: omap: n810: Fix enum ctl accesses in a wrong type Takashi Iwai
@ 2016-02-29 16:26 ` Takashi Iwai
2016-02-29 19:56 ` Jarkko Nikula
2016-03-01 3:23 ` Applied "ASoC: omap: rx51: Fix enum ctl accesses in a wrong type" to the asoc tree Mark Brown
2016-02-29 20:16 ` [PATCH 0/2] ASoC: omap: Fix enum ctl accesses Jarkko Nikula
2 siblings, 2 replies; 7+ messages in thread
From: Takashi Iwai @ 2016-02-29 16:26 UTC (permalink / raw)
To: alsa-devel; +Cc: Peter Ujfalusi, Mark Brown, Liam Girdwood, Jarkko Nikula
"Speaker Function", "Input Select" and "Jack Function" ctls in rx51
driver are enum, while the current driver accesses wrongly via
value.integer.value[]. They have to be via value.enumerated.item[]
instead.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
sound/soc/omap/rx51.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/sound/soc/omap/rx51.c b/sound/soc/omap/rx51.c
index 5e21f08579d8..54949242bc70 100644
--- a/sound/soc/omap/rx51.c
+++ b/sound/soc/omap/rx51.c
@@ -132,7 +132,7 @@ static struct snd_soc_ops rx51_ops = {
static int rx51_get_spk(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = rx51_spk_func;
+ ucontrol->value.enumerated.item[0] = rx51_spk_func;
return 0;
}
@@ -142,10 +142,10 @@ static int rx51_set_spk(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (rx51_spk_func == ucontrol->value.integer.value[0])
+ if (rx51_spk_func == ucontrol->value.enumerated.item[0])
return 0;
- rx51_spk_func = ucontrol->value.integer.value[0];
+ rx51_spk_func = ucontrol->value.enumerated.item[0];
rx51_ext_control(&card->dapm);
return 1;
@@ -180,7 +180,7 @@ static int rx51_hp_event(struct snd_soc_dapm_widget *w,
static int rx51_get_input(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = rx51_dmic_func;
+ ucontrol->value.enumerated.item[0] = rx51_dmic_func;
return 0;
}
@@ -190,10 +190,10 @@ static int rx51_set_input(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (rx51_dmic_func == ucontrol->value.integer.value[0])
+ if (rx51_dmic_func == ucontrol->value.enumerated.item[0])
return 0;
- rx51_dmic_func = ucontrol->value.integer.value[0];
+ rx51_dmic_func = ucontrol->value.enumerated.item[0];
rx51_ext_control(&card->dapm);
return 1;
@@ -202,7 +202,7 @@ static int rx51_set_input(struct snd_kcontrol *kcontrol,
static int rx51_get_jack(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = rx51_jack_func;
+ ucontrol->value.enumerated.item[0] = rx51_jack_func;
return 0;
}
@@ -212,10 +212,10 @@ static int rx51_set_jack(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (rx51_jack_func == ucontrol->value.integer.value[0])
+ if (rx51_jack_func == ucontrol->value.enumerated.item[0])
return 0;
- rx51_jack_func = ucontrol->value.integer.value[0];
+ rx51_jack_func = ucontrol->value.enumerated.item[0];
rx51_ext_control(&card->dapm);
return 1;
--
2.7.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] ASoC: omap: rx51: Fix enum ctl accesses in a wrong type
2016-02-29 16:26 ` [PATCH 2/2] ASoC: omap: rx51: Fix enum ctl accesses in a wrong type Takashi Iwai
@ 2016-02-29 19:56 ` Jarkko Nikula
2016-03-01 3:23 ` Applied "ASoC: omap: rx51: Fix enum ctl accesses in a wrong type" to the asoc tree Mark Brown
1 sibling, 0 replies; 7+ messages in thread
From: Jarkko Nikula @ 2016-02-29 19:56 UTC (permalink / raw)
To: Takashi Iwai, alsa-devel; +Cc: Peter Ujfalusi, Mark Brown, Liam Girdwood
On 02/29/2016 06:26 PM, Takashi Iwai wrote:
> "Speaker Function", "Input Select" and "Jack Function" ctls in rx51
> driver are enum, while the current driver accesses wrongly via
> value.integer.value[]. They have to be via value.enumerated.item[]
> instead.
>
> Signed-off-by: Takashi Iwai <tiwai@suse.de>
> ---
> sound/soc/omap/rx51.c | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tested-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 0/2] ASoC: omap: Fix enum ctl accesses
2016-02-29 16:26 [PATCH 0/2] ASoC: omap: Fix enum ctl accesses Takashi Iwai
2016-02-29 16:26 ` [PATCH 1/2] ASoC: omap: n810: Fix enum ctl accesses in a wrong type Takashi Iwai
2016-02-29 16:26 ` [PATCH 2/2] ASoC: omap: rx51: Fix enum ctl accesses in a wrong type Takashi Iwai
@ 2016-02-29 20:16 ` Jarkko Nikula
2 siblings, 0 replies; 7+ messages in thread
From: Jarkko Nikula @ 2016-02-29 20:16 UTC (permalink / raw)
To: Takashi Iwai, alsa-devel; +Cc: Peter Ujfalusi, Mark Brown, Liam Girdwood
On 02/29/2016 06:26 PM, Takashi Iwai wrote:
> Hi,
>
> here is a patchset to correct the wrong type accesses in omap drivers
> for enum ctls. I didn't put Cc to stable for them, supposing these
> are only for 32bit systems. If not, feel free to put Cc to stable.
>
>
> thanks,
>
> Takashi
>
> ===
>
> Takashi Iwai (2):
> ASoC: omap: n810: Fix enum ctl accesses in a wrong type
> ASoC: omap: rx51: Fix enum ctl accesses in a wrong type
>
> sound/soc/omap/n810.c | 18 +++++++++---------
> sound/soc/omap/rx51.c | 18 +++++++++---------
> 2 files changed, 18 insertions(+), 18 deletions(-)
>
No need to Cc stable with these. Both are 32-bit LE ARMs and thus
incorrect use of long instead of unsigned int haven't caused problems
due only positive integers value used here.
--
Jarkko
^ permalink raw reply [flat|nested] 7+ messages in thread
* Applied "ASoC: omap: rx51: Fix enum ctl accesses in a wrong type" to the asoc tree
2016-02-29 16:26 ` [PATCH 2/2] ASoC: omap: rx51: Fix enum ctl accesses in a wrong type Takashi Iwai
2016-02-29 19:56 ` Jarkko Nikula
@ 2016-03-01 3:23 ` Mark Brown
1 sibling, 0 replies; 7+ messages in thread
From: Mark Brown @ 2016-03-01 3:23 UTC (permalink / raw)
To: Takashi Iwai, Jarkko Nikula, Mark Brown; +Cc: alsa-devel
The patch
ASoC: omap: rx51: Fix enum ctl accesses in a wrong type
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From f4d438eec7fe56d55998195e08dfaa5aa3e08f0c Mon Sep 17 00:00:00 2001
From: Takashi Iwai <tiwai@suse.de>
Date: Mon, 29 Feb 2016 17:26:22 +0100
Subject: [PATCH] ASoC: omap: rx51: Fix enum ctl accesses in a wrong type
"Speaker Function", "Input Select" and "Jack Function" ctls in rx51
driver are enum, while the current driver accesses wrongly via
value.integer.value[]. They have to be via value.enumerated.item[]
instead.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/omap/rx51.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/sound/soc/omap/rx51.c b/sound/soc/omap/rx51.c
index 5e21f08579d8..54949242bc70 100644
--- a/sound/soc/omap/rx51.c
+++ b/sound/soc/omap/rx51.c
@@ -132,7 +132,7 @@ static struct snd_soc_ops rx51_ops = {
static int rx51_get_spk(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = rx51_spk_func;
+ ucontrol->value.enumerated.item[0] = rx51_spk_func;
return 0;
}
@@ -142,10 +142,10 @@ static int rx51_set_spk(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (rx51_spk_func == ucontrol->value.integer.value[0])
+ if (rx51_spk_func == ucontrol->value.enumerated.item[0])
return 0;
- rx51_spk_func = ucontrol->value.integer.value[0];
+ rx51_spk_func = ucontrol->value.enumerated.item[0];
rx51_ext_control(&card->dapm);
return 1;
@@ -180,7 +180,7 @@ static int rx51_hp_event(struct snd_soc_dapm_widget *w,
static int rx51_get_input(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = rx51_dmic_func;
+ ucontrol->value.enumerated.item[0] = rx51_dmic_func;
return 0;
}
@@ -190,10 +190,10 @@ static int rx51_set_input(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (rx51_dmic_func == ucontrol->value.integer.value[0])
+ if (rx51_dmic_func == ucontrol->value.enumerated.item[0])
return 0;
- rx51_dmic_func = ucontrol->value.integer.value[0];
+ rx51_dmic_func = ucontrol->value.enumerated.item[0];
rx51_ext_control(&card->dapm);
return 1;
@@ -202,7 +202,7 @@ static int rx51_set_input(struct snd_kcontrol *kcontrol,
static int rx51_get_jack(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = rx51_jack_func;
+ ucontrol->value.enumerated.item[0] = rx51_jack_func;
return 0;
}
@@ -212,10 +212,10 @@ static int rx51_set_jack(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (rx51_jack_func == ucontrol->value.integer.value[0])
+ if (rx51_jack_func == ucontrol->value.enumerated.item[0])
return 0;
- rx51_jack_func = ucontrol->value.integer.value[0];
+ rx51_jack_func = ucontrol->value.enumerated.item[0];
rx51_ext_control(&card->dapm);
return 1;
--
2.7.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Applied "ASoC: omap: n810: Fix enum ctl accesses in a wrong type" to the asoc tree
2016-02-29 16:26 ` [PATCH 1/2] ASoC: omap: n810: Fix enum ctl accesses in a wrong type Takashi Iwai
@ 2016-03-01 3:24 ` Mark Brown
0 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2016-03-01 3:24 UTC (permalink / raw)
To: Takashi Iwai, Jarkko Nikula, Mark Brown; +Cc: alsa-devel
The patch
ASoC: omap: n810: Fix enum ctl accesses in a wrong type
has been applied to the asoc tree at
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
>From dd90533cd6bbfe075a72ab789b6e9d6f280ba476 Mon Sep 17 00:00:00 2001
From: Takashi Iwai <tiwai@suse.de>
Date: Mon, 29 Feb 2016 17:26:21 +0100
Subject: [PATCH] ASoC: omap: n810: Fix enum ctl accesses in a wrong type
"Jack Function", "Speaker Function" and "Input Select" ctls in n810
driver are enum, while the current driver accesses wrongly via
value.integer.value[]. They have to be via value.enumerated.item[]
instead.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/omap/n810.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/sound/soc/omap/n810.c b/sound/soc/omap/n810.c
index 190f868e78b2..fdecb7043174 100644
--- a/sound/soc/omap/n810.c
+++ b/sound/soc/omap/n810.c
@@ -133,7 +133,7 @@ static struct snd_soc_ops n810_ops = {
static int n810_get_spk(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = n810_spk_func;
+ ucontrol->value.enumerated.item[0] = n810_spk_func;
return 0;
}
@@ -143,10 +143,10 @@ static int n810_set_spk(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (n810_spk_func == ucontrol->value.integer.value[0])
+ if (n810_spk_func == ucontrol->value.enumerated.item[0])
return 0;
- n810_spk_func = ucontrol->value.integer.value[0];
+ n810_spk_func = ucontrol->value.enumerated.item[0];
n810_ext_control(&card->dapm);
return 1;
@@ -155,7 +155,7 @@ static int n810_set_spk(struct snd_kcontrol *kcontrol,
static int n810_get_jack(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = n810_jack_func;
+ ucontrol->value.enumerated.item[0] = n810_jack_func;
return 0;
}
@@ -165,10 +165,10 @@ static int n810_set_jack(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (n810_jack_func == ucontrol->value.integer.value[0])
+ if (n810_jack_func == ucontrol->value.enumerated.item[0])
return 0;
- n810_jack_func = ucontrol->value.integer.value[0];
+ n810_jack_func = ucontrol->value.enumerated.item[0];
n810_ext_control(&card->dapm);
return 1;
@@ -177,7 +177,7 @@ static int n810_set_jack(struct snd_kcontrol *kcontrol,
static int n810_get_input(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- ucontrol->value.integer.value[0] = n810_dmic_func;
+ ucontrol->value.enumerated.item[0] = n810_dmic_func;
return 0;
}
@@ -187,10 +187,10 @@ static int n810_set_input(struct snd_kcontrol *kcontrol,
{
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
- if (n810_dmic_func == ucontrol->value.integer.value[0])
+ if (n810_dmic_func == ucontrol->value.enumerated.item[0])
return 0;
- n810_dmic_func = ucontrol->value.integer.value[0];
+ n810_dmic_func = ucontrol->value.enumerated.item[0];
n810_ext_control(&card->dapm);
return 1;
--
2.7.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-03-01 3:24 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-29 16:26 [PATCH 0/2] ASoC: omap: Fix enum ctl accesses Takashi Iwai
2016-02-29 16:26 ` [PATCH 1/2] ASoC: omap: n810: Fix enum ctl accesses in a wrong type Takashi Iwai
2016-03-01 3:24 ` Applied "ASoC: omap: n810: Fix enum ctl accesses in a wrong type" to the asoc tree Mark Brown
2016-02-29 16:26 ` [PATCH 2/2] ASoC: omap: rx51: Fix enum ctl accesses in a wrong type Takashi Iwai
2016-02-29 19:56 ` Jarkko Nikula
2016-03-01 3:23 ` Applied "ASoC: omap: rx51: Fix enum ctl accesses in a wrong type" to the asoc tree Mark Brown
2016-02-29 20:16 ` [PATCH 0/2] ASoC: omap: Fix enum ctl accesses Jarkko Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).