mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-15 02:05:16 +08:00
drm/hisilicon/hibmc: Replace module initialization with DRM helpers
Replace module_pci_driver() with drm_module_pci_driver(). The DRM macro respects drm_firmware_drivers_only() and fails if the flag has been set. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Signed-off-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20211222082831.196562-6-javierm@redhat.com
This commit is contained in:
parent
a32762d1db
commit
2075a734ed
@ -20,6 +20,7 @@
|
||||
#include <drm/drm_gem_framebuffer_helper.h>
|
||||
#include <drm/drm_gem_vram_helper.h>
|
||||
#include <drm/drm_managed.h>
|
||||
#include <drm/drm_module.h>
|
||||
#include <drm/drm_vblank.h>
|
||||
|
||||
#include "hibmc_drm_drv.h"
|
||||
@ -379,7 +380,7 @@ static struct pci_driver hibmc_pci_driver = {
|
||||
.driver.pm = &hibmc_pm_ops,
|
||||
};
|
||||
|
||||
module_pci_driver(hibmc_pci_driver);
|
||||
drm_module_pci_driver(hibmc_pci_driver);
|
||||
|
||||
MODULE_DEVICE_TABLE(pci, hibmc_pci_table);
|
||||
MODULE_AUTHOR("RongrongZou <zourongrong@huawei.com>");
|
||||
|
Loading…
Reference in New Issue
Block a user