block input devices from backlight list

I guess this is a thing in newer kernel versions?

ref T1497
This commit is contained in:
Mike Blumenkrantz 2015-12-28 15:58:38 -05:00
parent 8554024cba
commit bd5df00f4c
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ _bl_sys_find(void)
{
EINA_LIST_FOREACH(pdevs, l, f)
{
if ((!strstr(f, "kbd")) && (!strstr(f, "mail")))
if ((!strstr(f, "kbd")) && (!strstr(f, "mail")) && (!strstr(f, "input")))
{
bl_sysval = eina_stringshare_add(f);
break;