04 Nov, 2015

1 commit

  • The newly added led trigger support in the com20020-pci driver causes
    build errors when CONFIG_LEDS_CLASS is disabled:

    drivers/built-in.o: In function `com20020pci_probe':
    (.text+0x185dc4): undefined reference to `devm_led_classdev_register'
    (.text+0x185dd8): undefined reference to `devm_led_classdev_register'

    This adds a Kconfig dependency to prevent the invalid configurations.
    Other drivers appear to be split 50:50 between 'select' and 'depends on'
    for this symbol, I picked 'depends on' as I could not find a common
    policy and it generally causes fewer problems.

    Signed-off-by: Arnd Bergmann
    Fixes: 8890624a4e8c ("arcnet: com20020-pci: add led trigger support")
    Signed-off-by: David S. Miller

    Arnd Bergmann
     

26 Oct, 2015

6 commits


27 Sep, 2015

1 commit


23 Sep, 2015

30 commits


18 Sep, 2015

1 commit

  • For arcnet the bare minimum header only contains the 4 bytes to
    specify source, dest and offset (1, 1 and 2 bytes respectively).
    The corresponding struct is struct arc_hardware.

    The struct archdr contains additionally a union of possible soft
    headers. When doing $insertusecasehere packets might well
    include short (or even no?) soft headers.

    For this reason only use arc_hardware instead of archdr to
    determine the hard_header_len for an arcnet device.

    Signed-off-by: Michael Grzeschik
    Signed-off-by: David S. Miller

    Michael Grzeschik
     

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