31 Aug, 2016

1 commit

  • The Kconfig currently controlling compilation of this code is:

    drivers/base/Kconfig:config SOC_BUS
    drivers/base/Kconfig: bool

    ...meaning that it currently is not being built as a module by anyone.

    Lets remove the modular code that is essentially orphaned, so that
    when reading the driver there is no doubt it is builtin-only.

    Since module_init was not in use by this code, the init ordering
    remains unchanged with this commit.

    Cc: Lee Jones
    Cc: Greg Kroah-Hartman
    Signed-off-by: Paul Gortmaker
    Signed-off-by: Greg Kroah-Hartman

    Paul Gortmaker
     

05 Oct, 2015

1 commit


25 Mar, 2015

1 commit


30 May, 2012

1 commit


10 Apr, 2012

2 commits


11 Feb, 2012

1 commit

  • Traditionally, any System-on-Chip based platform creates a flat list
    of platform_devices directly under /sys/devices/platform.

    In order to give these some better structure, this introduces a new
    bus type for soc_devices that are registered with the new
    soc_device_register() function. All devices that are on the same
    chip should then be registered as child devices of the soc device.

    The soc bus also exports a few standardised device attributes which
    allow user space to query the specific type of soc.

    Signed-off-by: Lee Jones
    Signed-off-by: Greg Kroah-Hartman

    Lee Jones