Skip to content

Commit 4793b19

Browse files
ChiYuan Huanglag-linaro
authored andcommitted
leds: rgb: mt6370: Fix implicit declaration for FIELD_GET
0-DAY CI Kernel Test Service reported the implicit declaration error below: drivers/leds/rgb/leds-mt6370-rgb.c: In function'mt6370_check_vendor_info': >> drivers/leds/rgb/leds-mt6370-rgb.c:889:15: error: implicit declaration of function 'FIELD_GET' [-Werror=implicit-function-declaration] 889 | vid = FIELD_GET(MT6370_VENDOR_ID_MASK, devinfo); | Add the missing header 'bitfield.h' to fix it. Reported-by: kernel test robot <lkp@intel.com> Link: https://lore.kernel.org/oe-kbuild-all/202303171729.CcgyFx17-lkp@intel.com/ Fixes: 55a8a5c ("leds: rgb: mt6370: Add MediaTek MT6370 current sink type LED Indicator support") Signed-off-by: ChiYuan Huang <cy_huang@richtek.com> Signed-off-by: Lee Jones <lee@kernel.org> Link: https://lore.kernel.org/r/1679067760-19098-1-git-send-email-cy_huang@richtek.com
1 parent f797dbf commit 4793b19

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/leds/rgb/leds-mt6370-rgb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* Alice Chen <alice_chen@richtek.com>
88
*/
99

10+
#include <linux/bitfield.h>
1011
#include <linux/bitops.h>
1112
#include <linux/kernel.h>
1213
#include <linux/leds.h>

0 commit comments

Comments
 (0)