Hi all, Today's linux-next build (x86_64 allmodconfig) failed like this: sound/pci/ca0106/ca0106_main.c:263: error: syntax error before '{' token sound/pci/ca0106/ca0106_main.c:264: error: field name not in record or union initializer sound/pci/ca0106/ca0106_main.c:264: error: (near initialization for 'ca0106_chip_details') sound/pci/ca0106/ca0106_main.c:264: warning: missing braces around initializer sound/pci/ca0106/ca0106_main.c:264: warning: (near initialization for 'ca0106_chip_details[10]') sound/pci/ca0106/ca0106_main.c:264: warning: initialization makes integer from pointer without a cast sound/pci/ca0106/ca0106_main.c:264: error: initializer element is not computable at load time sound/pci/ca0106/ca0106_main.c:264: error: (near initialization for 'ca0106_chip_details[10].serial') sound/pci/ca0106/ca0106_main.c:265: error: field name not in record or union initializer sound/pci/ca0106/ca0106_main.c:265: error: (near initialization for 'ca0106_chip_details') sound/pci/ca0106/ca0106_main.c:266: error: field name not in record or union initializer sound/pci/ca0106/ca0106_main.c:266: error: (near initialization for 'ca0106_chip_details') sound/pci/ca0106/ca0106_main.c:272: error: syntax error before '{' token This is just Linus' tree (head commit d25e26b61d59370eee8b7f2634641eb0fa76e952 "[x86] Clean up MAXSMP Kconfig, and limit NR_CPUS to 512"). Introduced by commit c5d44423d55e3abca7b1d544af9e4c97ec203999 ("ALSA: CA0106 on MSI K8N Diamond PLUS Motherboard"). I added the following patch. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Date: Tue, 26 Aug 2008 10:33:32 +1000 Subject: [PATCH] ALSA: fix for CA0106 on MSI K8N Diamond PLUS Motherboard Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> --- sound/pci/ca0106/ca0106_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c index 03a274b..6abe8a3 100644 --- a/sound/pci/ca0106/ca0106_main.c +++ b/sound/pci/ca0106/ca0106_main.c @@ -254,7 +254,7 @@ static struct snd_ca0106_details ca0106_chip_details[] = { .name = "MSI K8N Diamond MB", .gpio_type = 2, .i2c_adc = 1, - .spi_dac = 2 } + .spi_dac = 2 }, /* Shuttle XPC SD31P which has an onboard Creative Labs * Sound Blaster Live! 24-bit EAX * high-definition 7.1 audio processor". -- 1.5.6.3 -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html