14 Jun, 2020

1 commit

  • Since commit 84af7a6194e4 ("checkpatch: kconfig: prefer 'help' over
    '---help---'"), the number of '---help---' has been gradually
    decreasing, but there are still more than 2400 instances.

    This commit finishes the conversion. While I touched the lines,
    I also fixed the indentation.

    There are a variety of indentation styles found.

    a) 4 spaces + '---help---'
    b) 7 spaces + '---help---'
    c) 8 spaces + '---help---'
    d) 1 space + 1 tab + '---help---'
    e) 1 tab + '---help---' (correct indentation)
    f) 1 tab + 1 space + '---help---'
    g) 1 tab + 2 spaces + '---help---'

    In order to convert all of them to 1 tab + 'help', I ran the
    following commend:

    $ find . -name 'Kconfig*' | xargs sed -i 's/^[[:space:]]*---help---/\thelp/'

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

21 May, 2019

1 commit


31 Aug, 2017

1 commit


31 May, 2017

2 commits


07 Oct, 2016

1 commit

  • If NO_DMA=y:

    drivers/built-in.o: In function `emac_probe':
    emac.c:(.text+0x3780b8): undefined reference to `bad_dma_ops'
    emac.c:(.text+0x3780e2): undefined reference to `bad_dma_ops'
    emac.c:(.text+0x378112): undefined reference to `bad_dma_ops'
    emac.c:(.text+0x378146): undefined reference to `bad_dma_ops'
    emac.c:(.text+0x37816e): undefined reference to `bad_dma_ops'
    drivers/built-in.o:emac.c:(.text+0x37819a): more undefined references to `bad_dma_ops' follow

    If NO_IOMEM=y:

    drivers/net/ethernet/qualcomm/emac/emac.c: In function ‘emac_remove’:
    drivers/net/ethernet/qualcomm/emac/emac.c:736:3: error: implicit declaration of function ‘iounmap’ [-Werror=implicit-function-declaration]
    iounmap(adpt->phy.digital);
    ^

    Add dependencies on HAS_DMA and HAS_IOMEM to fix this.

    Signed-off-by: Geert Uytterhoeven
    Acked-by: Timur Tabi
    Signed-off-by: David S. Miller

    Geert Uytterhoeven
     

02 Sep, 2016

1 commit

  • Add support for the Qualcomm Technologies, Inc. EMAC gigabit Ethernet
    controller.

    This driver supports the following features:
    1) Checksum offload.
    2) Interrupt coalescing support.
    3) SGMII phy.
    4) phylib interface for external phy

    Based on original work by
    Niranjana Vishwanathapura
    Gilad Avidov

    Signed-off-by: Timur Tabi
    Signed-off-by: David S. Miller

    Timur Tabi
     

23 Jun, 2015

1 commit

  • This howto made sense in the 1990s when users had to manually configure
    ISA cards with jumpers or vendor utilities, but with the implementation
    of PCI it became increasingly less and less relevant, to the point where
    it has been well over a decade since I last updated it. And there is
    no value in anyone else taking over updating it either.

    However the references to it continue to spread as boiler plate text
    from one Kconfig file into the next. We are not doing end users any
    favours by pointing them at this old document, so lets kill it with
    fire, once and for all, to hopefully stop any further spread.

    No code is changed in this commit, just Kconfig help text.

    Signed-off-by: Paul Gortmaker
    Signed-off-by: David S. Miller

    Paul Gortmaker
     

12 Nov, 2014

1 commit


29 Sep, 2014

1 commit