lkml.org 
[lkml]   [2007]   [Sep]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    SubjectDriver core: remove subsys_set_kset
    This macro is only used by the driver core and is held over from when we
    had subsystems. It is not needed anymore.


    Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

    ---
    drivers/base/bus.c | 3 ++-
    drivers/base/class.c | 2 +-
    include/linux/kobject.h | 13 -------------
    3 files changed, 3 insertions(+), 15 deletions(-)

    --- a/drivers/base/bus.c
    +++ b/drivers/base/bus.c
    @@ -823,7 +823,8 @@ int bus_register(struct bus_type * bus)
    if (retval)
    goto out;

    - subsys_set_kset(bus, bus_subsys);
    + bus->subsys.kobj.kset = &bus_subsys;
    +
    retval = subsystem_register(&bus->subsys);
    if (retval)
    goto out;
    --- a/drivers/base/class.c
    +++ b/drivers/base/class.c
    @@ -149,7 +149,7 @@ int class_register(struct class * cls)
    if (error)
    return error;

    - subsys_set_kset(cls, class_subsys);
    + cls->subsys.kobj.kset = &class_subsys;

    error = subsystem_register(&cls->subsys);
    if (!error) {
    --- a/include/linux/kobject.h
    +++ b/include/linux/kobject.h
    @@ -241,19 +241,6 @@ extern struct kset hypervisor_subsys;
    #define kset_set_kset_s(obj,subsys) \
    (obj)->kset.kobj.kset = &(subsys)

    -/**
    - * subsys_set_kset(obj,subsys) - set kset for subsystem
    - * @obj: ptr to some object type.
    - * @_subsys: a subsystem object (not a ptr).
    - *
    - * Can be used for any object type with an embedded ->subsys.
    - * Sets the kset of @obj's kobject to @subsys.kset. This makes
    - * the object a member of that kset.
    - */
    -
    -#define subsys_set_kset(obj,_subsys) \
    - (obj)->subsys.kobj.kset = &(_subsys)
    -
    extern void subsystem_init(struct kset *);
    extern int __must_check subsystem_register(struct kset *);
    extern void subsystem_unregister(struct kset *);
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/
    \
     
     \ /
      Last update: 2007-09-14 01:51    [W:2.914 / U:0.072 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site