// SPDX-License-Identifier: GPL-2.0 /* * Driver for Altera Partial Reconfiguration IP Core * * Copyright (C) 2016-2017 Intel Corporation * * Based on socfpga-a10.c Copyright (C) 2015-2016 Altera Corporation * by Alan Tull <[email protected]> */ #include <linux/fpga/altera-pr-ip-core.h> #include <linux/module.h> #include <linux/mod_devicetable.h> #include <linux/platform_device.h> static int alt_pr_platform_probe(struct platform_device *pdev) { … } static const struct of_device_id alt_pr_of_match[] = …; MODULE_DEVICE_TABLE(of, alt_pr_of_match); static struct platform_driver alt_pr_platform_driver = …; module_platform_driver(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …; MODULE_LICENSE(…) …;