Linux Kernel Mailing List | 1 Jul 2012 01:28

printk.c: fix kernel-doc warnings

Gitweb:     http://git.kernel.org/linus/;a=commit;h=4f0f4af59cb07bcf44d3c07a9e8c26df54d9fff8
Commit:     4f0f4af59cb07bcf44d3c07a9e8c26df54d9fff8
Parent:     87fac288083db40b5d5ab845393be268357c8827
Author:     Randy Dunlap <rdunlap <at> xenotime.net>
AuthorDate: Sat Jun 30 15:37:24 2012 -0700
Committer:  Linus Torvalds <torvalds <at> linux-foundation.org>
CommitDate: Sat Jun 30 15:56:40 2012 -0700

    printk.c: fix kernel-doc warnings

    Fix kernel-doc warnings in printk.c: use correct parameter name.

      Warning(kernel/printk.c:2429): No description found for parameter 'buf'
      Warning(kernel/printk.c:2429): Excess function parameter 'line' description in 'kmsg_dump_get_buffer'

    Signed-off-by: Randy Dunlap <rdunlap <at> xenotime.net>
    Signed-off-by: Linus Torvalds <torvalds <at> linux-foundation.org>
---
 kernel/printk.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/printk.c b/kernel/printk.c
index 5ae6b09..dba1821 100644
--- a/kernel/printk.c
+++ b/kernel/printk.c
 <at>  <at>  -2538,7 +2538,7  <at>  <at>  EXPORT_SYMBOL_GPL(kmsg_dump_get_line);
  * kmsg_dump_get_buffer - copy kmsg log lines
  *  <at> dumper: registered kmsg dumper
  *  <at> syslog: include the "<4>" prefixes
- *  <at> line: buffer to copy the line to
(Continue reading)

Linux Kernel Mailing List | 1 Jul 2012 01:28

ARM: mach-shmobile: add missing GPIO IRQ configuration on mackerel

Gitweb:     http://git.kernel.org/linus/;a=commit;h=56fb523f12665974bd249a39524b75b4f5e57388
Commit:     56fb523f12665974bd249a39524b75b4f5e57388
Parent:     6ae42bb22b40254e6488bbfe47f970620ab6d433
Author:     Guennadi Liakhovetski <g.liakhovetski <at> gmx.de>
AuthorDate: Wed Jun 20 12:15:59 2012 +0200
Committer:  Rafael J. Wysocki <rjw <at> sisk.pl>
CommitDate: Wed Jun 20 12:15:59 2012 +0200

    ARM: mach-shmobile: add missing GPIO IRQ configuration on mackerel

    SDHI0 card-detect GPIO IRQ on mackarel currently works, because it is the
    default configuration of IRQ26. However, we should not rely on this and
    should configure the function explicitly.

    Signed-off-by: Guennadi Liakhovetski <g.liakhovetski <at> gmx.de>
    Acked-by: Magnus Damm <damm <at> opensource.se>
    Signed-off-by: Rafael J. Wysocki <rjw <at> sisk.pl>
---
 arch/arm/mach-shmobile/board-mackerel.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c
index b577f7c..150122a 100644
--- a/arch/arm/mach-shmobile/board-mackerel.c
+++ b/arch/arm/mach-shmobile/board-mackerel.c
 <at>  <at>  -1512,6 +1512,9  <at>  <at>  static void __init mackerel_init(void)
 	gpio_request(GPIO_FN_SDHID0_1, NULL);
 	gpio_request(GPIO_FN_SDHID0_0, NULL);

+	/* SDHI0 PORT172 card-detect IRQ26 */
(Continue reading)

Linux Kernel Mailing List | 1 Jul 2012 01:28

ARM: SAMSUNG: Should check for IS_ERR(clk) instead of NULL

Gitweb:     http://git.kernel.org/linus/;a=commit;h=a5d8f4765f0e92ef027492a8cb979c5b8d45f2c3
Commit:     a5d8f4765f0e92ef027492a8cb979c5b8d45f2c3
Parent:     485802a6c524e62b5924849dd727ddbb1497cc71
Author:     Jonghwan Choi <jhbird.choi <at> samsung.com>
AuthorDate: Wed Jun 20 17:05:37 2012 +0900
Committer:  Kukjin Kim <kgene.kim <at> samsung.com>
CommitDate: Wed Jun 20 17:05:44 2012 +0900

    ARM: SAMSUNG: Should check for IS_ERR(clk) instead of NULL

    On the error condition clk_get() returns ERR_PTR().

    Signed-off-by: Jonghwan Choi <jhbird.choi <at> samsung.com>
    Cc: Stable <stable <at> vger.kernel.org>
    Signed-off-by: Kukjin Kim <kgene.kim <at> samsung.com>
---
 .../arm/plat-samsung/include/plat/watchdog-reset.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/plat-samsung/include/plat/watchdog-reset.h b/arch/arm/plat-samsung/include/plat/watchdog-reset.h
index f19aff1..bc4db9b 100644
--- a/arch/arm/plat-samsung/include/plat/watchdog-reset.h
+++ b/arch/arm/plat-samsung/include/plat/watchdog-reset.h
 <at>  <at>  -25,7 +25,7  <at>  <at>  static inline void arch_wdt_reset(void)

 	__raw_writel(0, S3C2410_WTCON);	  /* disable watchdog, to be safe  */

-	if (s3c2410_wdtclk)
+	if (!IS_ERR(s3c2410_wdtclk))
 		clk_enable(s3c2410_wdtclk);
(Continue reading)

Linux Kernel Mailing List | 1 Jul 2012 01:28

ARM: mach-shmobile: Fix build when SMP is enabled and EMEV2 is not enabled

Gitweb:     http://git.kernel.org/linus/;a=commit;h=6ae42bb22b40254e6488bbfe47f970620ab6d433
Commit:     6ae42bb22b40254e6488bbfe47f970620ab6d433
Parent:     4d6344f3c943a5ff1fd8dcbd7be61ebdef1d0285
Author:     Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj <at> renesas.com>
AuthorDate: Wed Jun 20 11:30:41 2012 +0200
Committer:  Rafael J. Wysocki <rjw <at> sisk.pl>
CommitDate: Wed Jun 20 11:30:41 2012 +0200

    ARM: mach-shmobile: Fix build when SMP is enabled and EMEV2 is not enabled

    Build failed, when SMP is enabled and EMEV2 is not enabled.

    arch/arm/mach-shmobile/built-in.o: In function `shmobile_platform_cpu_kill':
    /home/iwamatsu/work/kernel/sh-2.6-devel/arch/arm/mach-shmobile/platsmp.c:62: undefined
reference to `emev2_platform_cpu_kill'
    arch/arm/mach-shmobile/built-in.o: In function `shmobile_smp_get_core_count':
    /home/iwamatsu/work/kernel/sh-2.6-devel/arch/arm/mach-shmobile/platsmp.c:39: undefined
reference to `emev2_get_core_count'
    arch/arm/mach-shmobile/built-in.o: In function `shmobile_smp_prepare_cpus':
    /home/iwamatsu/work/kernel/sh-2.6-devel/arch/arm/mach-shmobile/platsmp.c:53: undefined
reference to `emev2_smp_prepare_cpus'
    arch/arm/mach-shmobile/built-in.o: In function `platform_secondary_init':
    /home/iwamatsu/work/kernel/sh-2.6-devel/arch/arm/mach-shmobile/platsmp.c:78: undefined
reference to `emev2_secondary_init'
    arch/arm/mach-shmobile/built-in.o: In function `boot_secondary':
    /home/iwamatsu/work/kernel/sh-2.6-devel/arch/arm/mach-shmobile/platsmp.c:90: undefined
reference to `emev2_boot_secondary

    This is the cause by when EMEV2 is disabled, that the check by OF of EMEV2 is
    performed in platsmp.c.
(Continue reading)

Linux Kernel Mailing List | 1 Jul 2012 01:28

ARM: mach-shmobile: armadillo800eva: Use late init machine hook

Gitweb:     http://git.kernel.org/linus/;a=commit;h=37f971b68009b8fadd322130787d693137302925
Commit:     37f971b68009b8fadd322130787d693137302925
Parent:     56fb523f12665974bd249a39524b75b4f5e57388
Author:     Laurent Pinchart <laurent.pinchart <at> ideasonboard.com>
AuthorDate: Wed Jun 20 12:53:25 2012 +0200
Committer:  Rafael J. Wysocki <rjw <at> sisk.pl>
CommitDate: Thu Jun 21 11:24:48 2012 +0200

    ARM: mach-shmobile: armadillo800eva: Use late init machine hook

    Since commit 21cc1b7ede3cf456cf1d51f8a906093261f7c111 ("ARM: shmobile:
    use machine specific hook for late init") suspend and CPU idle are not
    initialized automatically anymore. Set shmobile_init_late() as the
    machine late init hook to initialize them.

    Signed-off-by: Laurent Pinchart <laurent.pinchart <at> ideasonboard.com>
    Acked-by: Magnus Damm <damm <at> opensource.se>
    Signed-off-by: Rafael J. Wysocki <rjw <at> sisk.pl>
---
 arch/arm/mach-shmobile/board-armadillo800eva.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-shmobile/board-armadillo800eva.c b/arch/arm/mach-shmobile/board-armadillo800eva.c
index 9e37026..9bd1355 100644
--- a/arch/arm/mach-shmobile/board-armadillo800eva.c
+++ b/arch/arm/mach-shmobile/board-armadillo800eva.c
 <at>  <at>  -779,6 +779,7  <at>  <at>  DT_MACHINE_START(ARMADILLO800EVA_DT, "armadillo800eva")
 	.init_irq	= r8a7740_init_irq,
 	.handle_irq	= shmobile_handle_irq_intc,
 	.init_machine	= eva_init,
(Continue reading)

Linux Kernel Mailing List | 1 Jul 2012 01:28

Linux 3.5-rc5

Gitweb:     http://git.kernel.org/linus/;a=commit;h=6887a4131da3adaab011613776d865f4bcfb5678
Commit:     6887a4131da3adaab011613776d865f4bcfb5678
Parent:     c07978b3f80cc5b2aceba72eff7daefa4a57cd48
Author:     Linus Torvalds <torvalds <at> linux-foundation.org>
AuthorDate: Sat Jun 30 16:08:57 2012 -0700
Committer:  Linus Torvalds <torvalds <at> linux-foundation.org>
CommitDate: Sat Jun 30 16:08:57 2012 -0700

    Linux 3.5-rc5
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 3fdfde2..81ea154 100644
--- a/Makefile
+++ b/Makefile
 <at>  <at>  -1,7 +1,7  <at>  <at> 
 VERSION = 3
 PATCHLEVEL = 5
 SUBLEVEL = 0
-EXTRAVERSION = -rc4
+EXTRAVERSION = -rc5
 NAME = Saber-toothed Squirrel

 # *DOCUMENTATION*
--
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
(Continue reading)

Linux Kernel Mailing List | 1 Jul 2012 01:28

ARM: EXYNOS: Fix EXYNOS_DEV_DMA Kconfig entry

Gitweb:     http://git.kernel.org/linus/;a=commit;h=58c553d4d4637e1955a571350888530cd0073276
Commit:     58c553d4d4637e1955a571350888530cd0073276
Parent:     3dca938656c7b0ff6b0717a5dde0f5f45e592be5
Author:     Sachin Kamat <sachin.kamat <at> linaro.org>
AuthorDate: Wed Jun 27 10:03:00 2012 +0900
Committer:  Kukjin Kim <kgene.kim <at> samsung.com>
CommitDate: Wed Jun 27 10:03:00 2012 +0900

    ARM: EXYNOS: Fix EXYNOS_DEV_DMA Kconfig entry

    Commit 20ef9e08 ("ARM: EXYNOS: Support DMA for EXYNOS5250 SoC")
    renamed EXYNOS4_DEV_DMA to EXYNOS_DEV_DMA. But some machine entries
    still had EXYNOS4_DEV_DMA. Changed them to EXYNOS_DEV_DMA.

    Signed-off-by: Sachin Kamat <sachin.kamat <at> linaro.org>
    Signed-off-by: Kukjin Kim <kgene.kim <at> samsung.com>
---
 arch/arm/mach-exynos/Kconfig |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig
index 573be57..6f6d13f 100644
--- a/arch/arm/mach-exynos/Kconfig
+++ b/arch/arm/mach-exynos/Kconfig
 <at>  <at>  -212,7 +212,7  <at>  <at>  config MACH_SMDKV310
 	select EXYNOS_DEV_SYSMMU
 	select EXYNOS4_DEV_AHCI
 	select SAMSUNG_DEV_KEYPAD
-	select EXYNOS4_DEV_DMA
+	select EXYNOS_DEV_DMA
(Continue reading)

Linux Kernel Mailing List | 1 Jul 2012 01:28

linux/irq.h: fix kernel-doc warning

Gitweb:     http://git.kernel.org/linus/;a=commit;h=87fac288083db40b5d5ab845393be268357c8827
Commit:     87fac288083db40b5d5ab845393be268357c8827
Parent:     c76760926a802d0b13e0a7c200224ec289611998
Author:     Randy Dunlap <rdunlap <at> xenotime.net>
AuthorDate: Sat Jun 30 15:30:46 2012 -0700
Committer:  Linus Torvalds <torvalds <at> linux-foundation.org>
CommitDate: Sat Jun 30 15:56:40 2012 -0700

    linux/irq.h: fix kernel-doc warning

    Fix kernel-doc warning.  This struct member was removed in commit
    875682648b89 ("irq: Remove irq_chip->release()") so remove its
    associated kernel-doc entry also.

      Warning(include/linux/irq.h:338): Excess struct/union/enum/typedef member 'release' description
in 'irq_chip'

    Signed-off-by: Randy Dunlap <rdunlap <at> xenotime.net>
    Cc: Richard Weinberger <richard <at> nod.at>
    Cc: Thomas Gleixner <tglx <at> linutronix.de>
    Signed-off-by: Linus Torvalds <torvalds <at> linux-foundation.org>
---
 include/linux/irq.h |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/include/linux/irq.h b/include/linux/irq.h
index 61f5cec..a5261e3 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
 <at>  <at>  -301,8 +301,6  <at>  <at>  static inline irq_hw_number_t irqd_to_hwirq(struct irq_data *d)
(Continue reading)

Linux Kernel Mailing List | 1 Jul 2012 01:28

ARM: shmobile: r8a7779: Route all interrupts to ARM

Gitweb:     http://git.kernel.org/linus/;a=commit;h=86f887c105b909a2cea7b06f2136d66b3438b038
Commit:     86f887c105b909a2cea7b06f2136d66b3438b038
Parent:     c207d2df1c1b2a160b7d52229e5a43feea6a7d26
Author:     Phil Edworthy <phil.edworthy <at> renesas.com>
AuthorDate: Sat Jun 23 01:12:09 2012 +0200
Committer:  Rafael J. Wysocki <rjw <at> sisk.pl>
CommitDate: Sat Jun 23 01:12:09 2012 +0200

    ARM: shmobile: r8a7779: Route all interrupts to ARM

    Without this, the interrupts for I2C, VIN, GPIO, SDHC, HSCIF and
    HPB-DMAC are sent to the SH processor.

    Signed-off-by: Phil Edworthy <phil.edworthy <at> renesas.com>
    Acked-by: Magnus Damm <damm <at> opensource.se>
    Signed-off-by: Rafael J. Wysocki <rjw <at> sisk.pl>
---
 arch/arm/mach-shmobile/intc-r8a7779.c |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-shmobile/intc-r8a7779.c b/arch/arm/mach-shmobile/intc-r8a7779.c
index 550b23d..f04fad4 100644
--- a/arch/arm/mach-shmobile/intc-r8a7779.c
+++ b/arch/arm/mach-shmobile/intc-r8a7779.c
 <at>  <at>  -35,6 +35,9  <at>  <at> 
 #define INT2SMSKCR3 0xfe7822ac
 #define INT2SMSKCR4 0xfe7822b0

+#define INT2NTSR0 0xfe700060
+#define INT2NTSR1 0xfe700064
(Continue reading)

Linux Kernel Mailing List | 1 Jul 2012 01:28

ARM: shmobile: kzm9d: use late init machine hook

Gitweb:     http://git.kernel.org/linus/;a=commit;h=c207d2df1c1b2a160b7d52229e5a43feea6a7d26
Commit:     c207d2df1c1b2a160b7d52229e5a43feea6a7d26
Parent:     14dd52f4389e206537488aeb2b85d6b21fc27196
Author:     Kuninori Morimoto <kuninori.morimoto.gx <at> renesas.com>
AuthorDate: Wed Jun 20 22:41:34 2012 -0700
Committer:  Rafael J. Wysocki <rjw <at> sisk.pl>
CommitDate: Thu Jun 21 11:24:49 2012 +0200

    ARM: shmobile: kzm9d: use late init machine hook

    Since commit 21cc1b7ede3cf456cf1d51f8a906093261f7c111 ("ARM: shmobile:
    use machine specific hook for late init") suspend and CPU idle are not
    initialized automatically anymore. Set shmobile_init_late() as the
    machine late init hook to initialize them.

    Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx <at> renesas.com>
    Acked-by: Laurent Pinchart <laurent.pinchart <at> ideasonboard.com>
    Acked-by: Magnus Damm <damm <at> opensource.se>
    Signed-off-by: Rafael J. Wysocki <rjw <at> sisk.pl>
---
 arch/arm/mach-shmobile/board-kzm9d.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-shmobile/board-kzm9d.c b/arch/arm/mach-shmobile/board-kzm9d.c
index 7bc5e7d..6a33cf3 100644
--- a/arch/arm/mach-shmobile/board-kzm9d.c
+++ b/arch/arm/mach-shmobile/board-kzm9d.c
 <at>  <at>  -80,6 +80,7  <at>  <at>  DT_MACHINE_START(KZM9D_DT, "kzm9d")
 	.init_irq	= emev2_init_irq,
 	.handle_irq	= gic_handle_irq,
(Continue reading)


Gmane