From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755248Ab3AQRdR (ORCPT ); Thu, 17 Jan 2013 12:33:17 -0500 Received: from lxorguk.ukuu.org.uk ([81.2.110.251]:55884 "EHLO lxorguk.ukuu.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752104Ab3AQRdQ (ORCPT ); Thu, 17 Jan 2013 12:33:16 -0500 Subject: [PATCH 00/10] goldish: onwards, upwards 8) To: arve@android.com, x86@kernel.org, linux-kernel@vger.kernel.org, mikechan@google.com From: Alan Cox Date: Thu, 17 Jan 2013 17:53:26 +0000 Message-ID: <20130117175228.24458.5465.stgit@bob.linux.org.uk> User-Agent: StGit/0.16 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Use devm_ where it seems to make sense, clean up comments, documentation and some reservation and error paths. This makes it smaller and tighter again. --- Arve Hjønnevåg (4): goldfish: tty driver goldfish: framebuffer goldfish: real time clock goldfish: NAND flash driver Brian Swetland (1): goldfish: virtual input event driver David 'Digit' Turner (1): goldfish: add QEMU pipe driver Jun Nakajima (2): goldfish: platform device for x86 goldfish: add the goldfish virtual bus Mike Lockwood (2): goldfish: emulated MMC device goldfish: power device arch/x86/Kconfig | 12 + arch/x86/platform/Makefile | 1 arch/x86/platform/goldfish/Makefile | 1 arch/x86/platform/goldfish/goldfish.c | 51 ++ drivers/input/keyboard/Kconfig | 11 + drivers/input/keyboard/Makefile | 1 drivers/input/keyboard/goldfish_events.c | 187 +++++++++ drivers/mmc/host/Kconfig | 7 drivers/mmc/host/Makefile | 1 drivers/mmc/host/goldfish.c | 566 +++++++++++++++++++++++++++ drivers/mtd/devices/Kconfig | 7 drivers/mtd/devices/Makefile | 3 drivers/mtd/devices/goldfish_nand.c | 444 +++++++++++++++++++++ drivers/mtd/devices/goldfish_nand_reg.h | 72 +++ drivers/platform/Kconfig | 4 drivers/platform/Makefile | 1 drivers/platform/goldfish/Kconfig | 5 drivers/platform/goldfish/Makefile | 5 drivers/platform/goldfish/goldfish_pipe.c | 611 +++++++++++++++++++++++++++++ drivers/platform/goldfish/pdev_bus.c | 240 +++++++++++ drivers/power/Kconfig | 8 drivers/power/Makefile | 1 drivers/power/goldfish_battery.c | 234 +++++++++++ drivers/rtc/Kconfig | 9 drivers/rtc/Makefile | 1 drivers/rtc/rtc-goldfish.c | 140 +++++++ drivers/tty/Kconfig | 6 drivers/tty/Makefile | 1 drivers/tty/goldfish.c | 333 ++++++++++++++++ drivers/video/Kconfig | 9 drivers/video/Makefile | 1 drivers/video/goldfishfb.c | 316 +++++++++++++++ 32 files changed, 3287 insertions(+), 2 deletions(-) create mode 100644 arch/x86/platform/goldfish/Makefile create mode 100644 arch/x86/platform/goldfish/goldfish.c create mode 100644 drivers/input/keyboard/goldfish_events.c create mode 100644 drivers/mmc/host/goldfish.c create mode 100644 drivers/mtd/devices/goldfish_nand.c create mode 100644 drivers/mtd/devices/goldfish_nand_reg.h create mode 100644 drivers/platform/goldfish/Kconfig create mode 100644 drivers/platform/goldfish/Makefile create mode 100644 drivers/platform/goldfish/goldfish_pipe.c create mode 100644 drivers/platform/goldfish/pdev_bus.c create mode 100644 drivers/power/goldfish_battery.c create mode 100644 drivers/rtc/rtc-goldfish.c create mode 100644 drivers/tty/goldfish.c create mode 100644 drivers/video/goldfishfb.c