• Rolf Eike Beer's avatar
    [PATCH] PCI Hotplug: Clean up acpiphp_core.c: slot_paranoia_check · 70ae51ee
    Rolf Eike Beer authored
    Matthew Wilcox wrote:
    > On Thu, Apr 22, 2004 at 01:18:23PM +0200, Rolf Eike Beer wrote:
    > > slot_paranoia_check is only another kind of checking everything for NULL.
    > > Removing this leads to function get_slot is reduced to a simple cast, so
    > > this function can be killed also.
    >
    > Since private is void *, you don't even need the casts.
    >
    > >  static int enable_slot (struct hotplug_slot *hotplug_slot)
    > >  {
    > > -	struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
    > > +	struct slot *slot = (struct slot *)hotplug_slot->private;
    >
    > 	struct slot *slot = hotplug_slot->private;
    >
    > is enough.
    
    Fixed.
    70ae51ee
acpiphp_core.c 11.2 KB