nuttx/drivers/pci/pci_drivers.c
yangshuyong 75f8c72dbb drivers/pci/pci_qemu_edu: update qemu edu driver code
Signed-off-by: yangshuyong <yangshuyong@xiaomi.com>
Signed-off-by: Bowen Wang <wangbowen6@xiaomi.com>
Signed-off-by: lipengfei28 <lipengfei28@xiaomi.com>
2024-09-06 10:01:11 +08:00

70 lines
2.2 KiB
C

/****************************************************************************
* drivers/pci/pci_drivers.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <debug.h>
#include <nuttx/pci/pci.h>
#include <nuttx/pci/pci_qemu_edu.h>
#include <nuttx/pci/pci_qemu_test.h>
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: pci_register_drivers
*
* Description:
* Register all the pci drivers to pci bus
*
****************************************************************************/
int pci_register_drivers(void)
{
int ret;
/* Initialization pci qemu test driver */
#ifdef CONFIG_PCI_QEMU_TEST
ret = pci_register_qemu_test_driver();
if (ret < 0)
{
pcierr("pci_register_qemu_test_driver failed, ret=%d\n", ret);
}
#endif
/* Initialization qemu edu driver */
#ifdef CONFIG_PCI_QEMU_EDU
ret = pci_register_qemu_edu_driver();
if (ret < 0)
{
pcierr("pci_register_qemu_edu_driver failed, ret=%d\n", ret);
}
#endif
UNUSED(ret);
return ret;
}