// SPDX-License-Identifier: GPL-2.0 /* * compat.c - A series of functions to make it easier to convert drivers that use * the old isapnp APIs. If possible use the new APIs instead. * * Copyright 2002 Adam Belay <[email protected]> */ #include <linux/module.h> #include <linux/isapnp.h> #include <linux/string.h> static void pnp_convert_id(char *buf, unsigned short vendor, unsigned short device) { … } struct pnp_dev *pnp_find_dev(struct pnp_card *card, unsigned short vendor, unsigned short function, struct pnp_dev *from) { … } EXPORT_SYMBOL(…);