platform_unregister_drivers(9) unregister an array of platform drivers

SYNOPSIS

void platform_unregister_drivers(struct platform_driver *const * drivers, unsigned int count);

ARGUMENTS

drivers

an array of drivers to unregister

count

the number of drivers to unregister

DESCRIPTION

Unegisters platform drivers specified by an array. This is typically used to complement an earlier call to platform_register_drivers. Drivers are unregistered in the reverse order in which they were registered.

COPYRIGHT