ioport.c 312 B

12345678910111213
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (C) 2021 Intel Corporation
  4. * Author: Johannes Berg <[email protected]>
  5. */
  6. #include <asm/iomap.h>
  7. #include <asm-generic/pci_iomap.h>
  8. void __iomem *__pci_ioport_map(struct pci_dev *dev, unsigned long port,
  9. unsigned int nr)
  10. {
  11. return NULL;
  12. }