소스 검색

ahci: mediatek: fix undefined reference of dev_err

building with MTK_AHCI enabled results in implicit declaration and
undefined reference of dev_err followed by a segfault of gcc

drivers/ata/mtk_ahci.c: In function 'mtk_ahci_parse_property':
drivers/ata/mtk_ahci.c:65:4: warning:
implicit declaration of function 'dev_err'
drivers/ata/mtk_ahci.c:65: undefined reference to `dev_err'
in function `mtk_ahci_probe':
drivers/ata/mtk_ahci.c:92: undefined reference to `dev_err'
Segmentation fault

fix this by adding the dm/device_compat.h to includes

Signed-off-by: Frank Wunderlich <frank-w@public-files.de>
Frank Wunderlich 3 년 전
부모
커밋
93cac85d78
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      drivers/ata/mtk_ahci.c

+ 1 - 0
drivers/ata/mtk_ahci.c

@@ -21,6 +21,7 @@
 #include <sata.h>
 #include <sata.h>
 #include <scsi.h>
 #include <scsi.h>
 #include <syscon.h>
 #include <syscon.h>
+#include <dm/device_compat.h>
 
 
 #define SYS_CFG			0x14
 #define SYS_CFG			0x14
 #define SYS_CFG_SATA_MSK	GENMASK(31, 30)
 #define SYS_CFG_SATA_MSK	GENMASK(31, 30)