1. NAME

platform_device_unregister - unregister a platform-level device

2. SYNOPSIS

void platform_device_unregister(struct platform_device *  pdev );

3. ARGUMENTS

pdev
    platform device weAqre unregistering

4. DESCRIPTION

Unregistration is done in 2 steps. First we release all resources and remove it from the subsystem, then we drop reference count by calling platform_device_put.

5. COPYRIGHT