diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-03-31 18:01:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-03-31 18:01:16 -0400 |
commit | e38be1b1066687204b05b6a46a2018806c7281de (patch) | |
tree | d0210ff404d7726aabcaa6abe6ad5f712ad6dcff | |
parent | f24279172d610e5ab2b8a2e290490213b0622453 (diff) | |
parent | 4c332c3238ab41fa9bc18d6ccb8e8aec1c87a426 (diff) |
Merge tag 'please-pull-misc-3.15' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux
Pull ia64 updates from Tony Luck:
"Miscellaneous ia64 fixes for 3.15 merge window"
* tag 'please-pull-misc-3.15' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux:
[IA64] Keep format strings from leaking into printk
Fix warning in make defconfig
[IA64] sba_iommu: fix section mismatch To: linux-kernel@vger.kernel.org
-rw-r--r-- | arch/ia64/configs/generic_defconfig | 4 | ||||
-rw-r--r-- | arch/ia64/hp/common/sba_iommu.c | 6 | ||||
-rw-r--r-- | arch/ia64/kernel/mca.c | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/arch/ia64/configs/generic_defconfig b/arch/ia64/configs/generic_defconfig index efbd2929aeb7..6404acbb84b2 100644 --- a/arch/ia64/configs/generic_defconfig +++ b/arch/ia64/configs/generic_defconfig | |||
@@ -30,9 +30,9 @@ CONFIG_ACPI_BUTTON=m | |||
30 | CONFIG_ACPI_FAN=m | 30 | CONFIG_ACPI_FAN=m |
31 | CONFIG_ACPI_DOCK=y | 31 | CONFIG_ACPI_DOCK=y |
32 | CONFIG_ACPI_PROCESSOR=m | 32 | CONFIG_ACPI_PROCESSOR=m |
33 | CONFIG_ACPI_CONTAINER=m | 33 | CONFIG_ACPI_CONTAINER=y |
34 | CONFIG_HOTPLUG_PCI=y | 34 | CONFIG_HOTPLUG_PCI=y |
35 | CONFIG_HOTPLUG_PCI_ACPI=m | 35 | CONFIG_HOTPLUG_PCI_ACPI=y |
36 | CONFIG_PACKET=y | 36 | CONFIG_PACKET=y |
37 | CONFIG_UNIX=y | 37 | CONFIG_UNIX=y |
38 | CONFIG_INET=y | 38 | CONFIG_INET=y |
diff --git a/arch/ia64/hp/common/sba_iommu.c b/arch/ia64/hp/common/sba_iommu.c index 8e858b593e4f..30c43d39dede 100644 --- a/arch/ia64/hp/common/sba_iommu.c +++ b/arch/ia64/hp/common/sba_iommu.c | |||
@@ -1596,7 +1596,7 @@ static void sba_unmap_sg_attrs(struct device *dev, struct scatterlist *sglist, | |||
1596 | * | 1596 | * |
1597 | ***************************************************************/ | 1597 | ***************************************************************/ |
1598 | 1598 | ||
1599 | static void __init | 1599 | static void |
1600 | ioc_iova_init(struct ioc *ioc) | 1600 | ioc_iova_init(struct ioc *ioc) |
1601 | { | 1601 | { |
1602 | int tcnfg; | 1602 | int tcnfg; |
@@ -1807,7 +1807,7 @@ static struct ioc_iommu ioc_iommu_info[] __initdata = { | |||
1807 | { SX2000_IOC_ID, "sx2000", NULL }, | 1807 | { SX2000_IOC_ID, "sx2000", NULL }, |
1808 | }; | 1808 | }; |
1809 | 1809 | ||
1810 | static struct ioc * __init | 1810 | static struct ioc * |
1811 | ioc_init(unsigned long hpa, void *handle) | 1811 | ioc_init(unsigned long hpa, void *handle) |
1812 | { | 1812 | { |
1813 | struct ioc *ioc; | 1813 | struct ioc *ioc; |
@@ -2041,7 +2041,7 @@ sba_map_ioc_to_node(struct ioc *ioc, acpi_handle handle) | |||
2041 | #define sba_map_ioc_to_node(ioc, handle) | 2041 | #define sba_map_ioc_to_node(ioc, handle) |
2042 | #endif | 2042 | #endif |
2043 | 2043 | ||
2044 | static int __init | 2044 | static int |
2045 | acpi_sba_ioc_add(struct acpi_device *device, | 2045 | acpi_sba_ioc_add(struct acpi_device *device, |
2046 | const struct acpi_device_id *not_used) | 2046 | const struct acpi_device_id *not_used) |
2047 | { | 2047 | { |
diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c index b8edfa75a83f..601502ab7141 100644 --- a/arch/ia64/kernel/mca.c +++ b/arch/ia64/kernel/mca.c | |||
@@ -217,7 +217,7 @@ void ia64_mca_printk(const char *fmt, ...) | |||
217 | /* Copy the output into mlogbuf */ | 217 | /* Copy the output into mlogbuf */ |
218 | if (oops_in_progress) { | 218 | if (oops_in_progress) { |
219 | /* mlogbuf was abandoned, use printk directly instead. */ | 219 | /* mlogbuf was abandoned, use printk directly instead. */ |
220 | printk(temp_buf); | 220 | printk("%s", temp_buf); |
221 | } else { | 221 | } else { |
222 | spin_lock(&mlogbuf_wlock); | 222 | spin_lock(&mlogbuf_wlock); |
223 | for (p = temp_buf; *p; p++) { | 223 | for (p = temp_buf; *p; p++) { |
@@ -268,7 +268,7 @@ void ia64_mlogbuf_dump(void) | |||
268 | } | 268 | } |
269 | *p = '\0'; | 269 | *p = '\0'; |
270 | if (temp_buf[0]) | 270 | if (temp_buf[0]) |
271 | printk(temp_buf); | 271 | printk("%s", temp_buf); |
272 | mlogbuf_start = index; | 272 | mlogbuf_start = index; |
273 | 273 | ||
274 | mlogbuf_timestamp = 0; | 274 | mlogbuf_timestamp = 0; |