mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +00:00

Implement the basic platform bus abstractions required to write a basic platform driver. This includes the following data structures: The `platform::Driver` trait represents the interface to the driver and provides `platform::Driver::probe` for the driver to implement. The `platform::Device` abstraction represents a `struct platform_device`. In order to provide the platform bus specific parts to a generic `driver::Registration` the `driver::RegistrationOps` trait is implemented by `platform::Adapter`. Reviewed-by: Rob Herring (Arm) <robh@kernel.org> Signed-off-by: Danilo Krummrich <dakr@kernel.org> Tested-by: Dirk Behme <dirk.behme@de.bosch.com> Link: https://lore.kernel.org/r/20241219170425.12036-15-dakr@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14 lines
308 B
C
14 lines
308 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
void *rust_helper_platform_get_drvdata(const struct platform_device *pdev)
|
|
{
|
|
return platform_get_drvdata(pdev);
|
|
}
|
|
|
|
void rust_helper_platform_set_drvdata(struct platform_device *pdev, void *data)
|
|
{
|
|
platform_set_drvdata(pdev, data);
|
|
}
|