From: gregory.clement@free-electrons•com (Gregory CLEMENT)
To: linux-arm-kernel@lists•infradead.org
Subject: [PATCH 09/12] mmc: sdhci-xenon: add initial Xenon eMMC driver
Date: Thu, 09 Jun 2016 16:33:50 +0200 [thread overview]
Message-ID: <87vb1imnxt.fsf@free-electrons.com> (raw)
In-Reply-To: <201606092116.RFdPDzjC%fengguang.wu@intel.com> (kbuild test robot's message of "Thu, 9 Jun 2016 21:45:59 +0800")
Hi ,
On jeu., juin 09 2016, kbuild test robot <lkp@intel•com> wrote:
> Hi,
>
> [auto build test ERROR on ulf.hansson-mmc/next]
> [also build test ERROR on v4.7-rc2 next-20160609]
> [if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
>
> url: https://github.com/0day-ci/linux/commits/Gregory-CLEMENT/Add-SDHCI-Xenon-driver/20160609-151403
> base: https://git.linaro.org/people/ulf.hansson/mmc next
> config: ia64-allyesconfig (attached as .config)
> compiler: ia64-linux-gcc (GCC) 4.9.0
> reproduce:
> wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # save the attached .config to linux build tree
> make.cross ARCH=ia64
>
> All errors (new ones prefixed by >>):
>
> In file included from drivers/mmc/host/sdhci-xenon.c:14:0:
>>> arch/ia64/include/uapi/asm/setup.h:7:2: error: unknown type name '__u64'
> __u64 command_line; /* physical address of command line arguments */
> ^
> arch/ia64/include/uapi/asm/setup.h:8:2: error: unknown type name '__u64'
> __u64 efi_systab; /* physical address of EFI system table */
> ^
> arch/ia64/include/uapi/asm/setup.h:9:2: error: unknown type name '__u64'
> __u64 efi_memmap; /* physical address of EFI memory map */
> ^
> arch/ia64/include/uapi/asm/setup.h:10:2: error: unknown type name '__u64'
> __u64 efi_memmap_size; /* size of EFI memory map */
> ^
> arch/ia64/include/uapi/asm/setup.h:11:2: error: unknown type name '__u64'
> __u64 efi_memdesc_size; /* size of an EFI memory map descriptor */
> ^
>>> arch/ia64/include/uapi/asm/setup.h:12:2: error: unknown type name '__u32'
> __u32 efi_memdesc_version; /* memory descriptor version */
> ^
>>> arch/ia64/include/uapi/asm/setup.h:14:3: error: unknown type name '__u16'
> __u16 num_cols; /* number of columns on console output device */
> ^
> arch/ia64/include/uapi/asm/setup.h:15:3: error: unknown type name '__u16'
> __u16 num_rows; /* number of rows on console output device */
> ^
> arch/ia64/include/uapi/asm/setup.h:16:3: error: unknown type name '__u16'
> __u16 orig_x; /* cursor's x position */
> ^
> arch/ia64/include/uapi/asm/setup.h:17:3: error: unknown type name '__u16'
> __u16 orig_y; /* cursor's y position */
> ^
> arch/ia64/include/uapi/asm/setup.h:19:2: error: unknown type name '__u64'
> __u64 fpswa; /* physical address of the fpswa interface */
> ^
> arch/ia64/include/uapi/asm/setup.h:20:2: error: unknown type name '__u64'
> __u64 initrd_start;
> ^
> arch/ia64/include/uapi/asm/setup.h:21:2: error: unknown type name '__u64'
> __u64 initrd_size;
> ^
>
> vim +/__u64 +7 arch/ia64/include/uapi/asm/setup.h
it seems that including asm/setup.h was a left over and was not needed,
so I remove it.
Gregory
>
> ^1da177e include/asm-ia64/setup.h Linus Torvalds 2005-04-16 1 #ifndef __IA64_SETUP_H
> ^1da177e include/asm-ia64/setup.h Linus Torvalds 2005-04-16 2 #define __IA64_SETUP_H
> ^1da177e include/asm-ia64/setup.h Linus Torvalds 2005-04-16 3
> cca97de1 include/asm-ia64/setup.h Alon Bar-Lev 2007-02-12 4 #define COMMAND_LINE_SIZE 2048
> ^1da177e include/asm-ia64/setup.h Linus Torvalds 2005-04-16 5
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 6 extern struct ia64_boot_param {
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 @7 __u64 command_line; /* physical address of command line arguments */
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 8 __u64 efi_systab; /* physical address of EFI system table */
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 @9 __u64 efi_memmap; /* physical address of EFI memory map */
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 @10 __u64 efi_memmap_size; /* size of EFI memory map */
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 11 __u64 efi_memdesc_size; /* size of an EFI memory map descriptor */
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 @12 __u32 efi_memdesc_version; /* memory descriptor version */
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 13 struct {
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 @14 __u16 num_cols; /* number of columns on console output device */
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 15 __u16 num_rows; /* number of rows on console output device */
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 16 __u16 orig_x; /* cursor's x position */
> c140d879 arch/ia64/include/asm/setup.h David Howells 2012-03-28 17 __u16 orig_y; /* cursor's y position */
>
> :::::: The code at line 7 was first introduced by commit
> :::::: c140d87995b68b428f70635c2e4071e4e8b3256e Disintegrate asm/system.h for IA64
>
> :::::: TO: David Howells <dhowells@redhat•com>
> :::::: CC: David Howells <dhowells@redhat•com>
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
>
--
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
next prev parent reply other threads:[~2016-06-09 14:33 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-09 7:10 [PATCH 00/12] Add SDHCI Xenon driver Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 01/12] mmc: sdhci: add init_card callback to sdhci Gregory CLEMENT
2016-06-13 8:32 ` Adrian Hunter
2016-06-14 7:58 ` Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 02/12] mmc: sdhci_f_sdh30: restrict voltage_switch() callback to the 1.8V case Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 03/12] mmc: tegra: restrict the " Gregory CLEMENT
2016-06-09 9:54 ` Lucas Stach
2016-06-09 12:27 ` Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 04/12] mmc: sdhci: call voltage_switch callback also for the 3.3V case Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 05/12] mmc: sdhci: add a pre voltage switch callback function Gregory CLEMENT
2016-06-13 8:46 ` Adrian Hunter
2016-06-13 14:04 ` Ziji Hu
2016-06-14 7:07 ` Adrian Hunter
2016-06-14 7:59 ` Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 06/12] mmc: sdhci: add delay adjust feature including phy reset Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 07/12] mmc: core: export the alive operation Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 08/12] dt-bindings: mmc: Add Xenon description Gregory CLEMENT
2016-06-10 14:16 ` Rob Herring
2016-06-14 8:02 ` Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 09/12] mmc: sdhci-xenon: add initial Xenon eMMC driver Gregory CLEMENT
2016-06-09 13:45 ` kbuild test robot
2016-06-09 14:33 ` Gregory CLEMENT [this message]
2016-06-09 14:20 ` kbuild test robot
2016-06-09 14:54 ` Gregory CLEMENT
2016-06-09 21:49 ` Arnd Bergmann
2016-06-14 6:52 ` Adrian Hunter
2016-06-14 8:19 ` Gregory CLEMENT
2016-06-14 8:36 ` Adrian Hunter
2016-06-22 11:04 ` Ulf Hansson
2016-06-09 7:10 ` [PATCH 10/12] arm64: dts: marvell: add eMMC support for Armada 37xx Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 11/12] arm64: dts: marvell: add SDIO " Gregory CLEMENT
2016-06-09 7:10 ` [PATCH 12/12] arm64: defconfig: Add Xenon sdhci Gregory CLEMENT
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87vb1imnxt.fsf@free-electrons.com \
--to=gregory.clement@free-electrons$(echo .)com \
--cc=linux-arm-kernel@lists$(echo .)infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox