alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ALSA: Constify static attribute_group structs
@ 2021-01-31  0:12 Rikard Falkeborn
  2021-01-31  0:12 ` [PATCH 1/2] ALSA: ac97: Constify static struct attribute_group Rikard Falkeborn
  2021-01-31  0:12 ` [PATCH 2/2] ALSA: hda: Constify static attribute_group Rikard Falkeborn
  0 siblings, 2 replies; 5+ messages in thread
From: Rikard Falkeborn @ 2021-01-31  0:12 UTC (permalink / raw)
  To: Jaroslav Kysela, Takashi Iwai; +Cc: alsa-devel, linux-kernel, Rikard Falkeborn

Constify two static attribute_group structs that are never modified.
These two were the only static non-const ones in sound/.

Rikard Falkeborn (2):
  ALSA: ac97: Constify static struct attribute_group
  ALSA: hda: Constify static attribute_group

 sound/ac97/bus.c       | 2 +-
 sound/hda/hdac_sysfs.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.30.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] ALSA: ac97: Constify static struct attribute_group
  2021-01-31  0:12 [PATCH 0/2] ALSA: Constify static attribute_group structs Rikard Falkeborn
@ 2021-01-31  0:12 ` Rikard Falkeborn
  2021-01-31  8:50   ` Takashi Iwai
  2021-01-31  0:12 ` [PATCH 2/2] ALSA: hda: Constify static attribute_group Rikard Falkeborn
  1 sibling, 1 reply; 5+ messages in thread
From: Rikard Falkeborn @ 2021-01-31  0:12 UTC (permalink / raw)
  To: Jaroslav Kysela, Takashi Iwai; +Cc: alsa-devel, linux-kernel, Rikard Falkeborn

The only usage of ac97_adapter_attr_group is to put its address in an
array of pointers to const attribute_group structs. Make it const to
allow the compiler to put it in read-only memory.

Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
---
 sound/ac97/bus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/ac97/bus.c b/sound/ac97/bus.c
index 7985dd8198b6..d9077e91382b 100644
--- a/sound/ac97/bus.c
+++ b/sound/ac97/bus.c
@@ -273,7 +273,7 @@ static struct attribute *ac97_controller_device_attrs[] = {
 	NULL
 };
 
-static struct attribute_group ac97_adapter_attr_group = {
+static const struct attribute_group ac97_adapter_attr_group = {
 	.name	= "ac97_operations",
 	.attrs	= ac97_controller_device_attrs,
 };
-- 
2.30.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] ALSA: hda: Constify static attribute_group
  2021-01-31  0:12 [PATCH 0/2] ALSA: Constify static attribute_group structs Rikard Falkeborn
  2021-01-31  0:12 ` [PATCH 1/2] ALSA: ac97: Constify static struct attribute_group Rikard Falkeborn
@ 2021-01-31  0:12 ` Rikard Falkeborn
  2021-01-31  8:50   ` Takashi Iwai
  1 sibling, 1 reply; 5+ messages in thread
From: Rikard Falkeborn @ 2021-01-31  0:12 UTC (permalink / raw)
  To: Jaroslav Kysela, Takashi Iwai; +Cc: alsa-devel, linux-kernel, Rikard Falkeborn

The only usage of hdac_dev_attr_group is to put its address in an array
of pointers to const attribute_group structs. Make it const to allow the
compiler to put it in read-only memory.

Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
---
 sound/hda/hdac_sysfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/hda/hdac_sysfs.c b/sound/hda/hdac_sysfs.c
index e56e83325903..0d7771fca9f0 100644
--- a/sound/hda/hdac_sysfs.c
+++ b/sound/hda/hdac_sysfs.c
@@ -66,7 +66,7 @@ static struct attribute *hdac_dev_attrs[] = {
 	NULL
 };
 
-static struct attribute_group hdac_dev_attr_group = {
+static const struct attribute_group hdac_dev_attr_group = {
 	.attrs	= hdac_dev_attrs,
 };
 
-- 
2.30.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] ALSA: ac97: Constify static struct attribute_group
  2021-01-31  0:12 ` [PATCH 1/2] ALSA: ac97: Constify static struct attribute_group Rikard Falkeborn
@ 2021-01-31  8:50   ` Takashi Iwai
  0 siblings, 0 replies; 5+ messages in thread
From: Takashi Iwai @ 2021-01-31  8:50 UTC (permalink / raw)
  To: Rikard Falkeborn; +Cc: linux-kernel, alsa-devel, Takashi Iwai

On Sun, 31 Jan 2021 01:12:40 +0100,
Rikard Falkeborn wrote:
> 
> The only usage of ac97_adapter_attr_group is to put its address in an
> array of pointers to const attribute_group structs. Make it const to
> allow the compiler to put it in read-only memory.
> 
> Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>

Thanks, applied.


Takashi

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] ALSA: hda: Constify static attribute_group
  2021-01-31  0:12 ` [PATCH 2/2] ALSA: hda: Constify static attribute_group Rikard Falkeborn
@ 2021-01-31  8:50   ` Takashi Iwai
  0 siblings, 0 replies; 5+ messages in thread
From: Takashi Iwai @ 2021-01-31  8:50 UTC (permalink / raw)
  To: Rikard Falkeborn; +Cc: linux-kernel, alsa-devel, Takashi Iwai

On Sun, 31 Jan 2021 01:12:41 +0100,
Rikard Falkeborn wrote:
> 
> The only usage of hdac_dev_attr_group is to put its address in an array
> of pointers to const attribute_group structs. Make it const to allow the
> compiler to put it in read-only memory.
> 
> Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>

Thanks, applied.


Takashi

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-01-31  8:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-31  0:12 [PATCH 0/2] ALSA: Constify static attribute_group structs Rikard Falkeborn
2021-01-31  0:12 ` [PATCH 1/2] ALSA: ac97: Constify static struct attribute_group Rikard Falkeborn
2021-01-31  8:50   ` Takashi Iwai
2021-01-31  0:12 ` [PATCH 2/2] ALSA: hda: Constify static attribute_group Rikard Falkeborn
2021-01-31  8:50   ` Takashi Iwai

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).