]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drivers/video/backlight/backlight.c: remove backlight sysfs uevent
authorKyungmin Park <kyungmin.park@samsung.com>
Thu, 22 May 2014 00:43:37 +0000 (10:43 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 22 May 2014 00:43:37 +0000 (10:43 +1000)
Most mobile phones have Ambient Light Sensors and it changes brightness
according to the lux.  It means it changes backlight brightness frequently
by just writing sysfs node, so it generates uevent.

Usually there's no user to use this backlight changes.  But it forks udev
worker threads and it takes about 5ms.  The main problem is that it hurts
other process activities.  so remove it.

Kay said
"Uevents are for the major, low-frequent, global device state-changes,
 not for carrying-out any sort of measurement data. Subsystems which
 need that should use other facilities like poll()-able sysfs file or
 any other subscription-based, client-tracking interface which does not
 cause overhead if it isn't used. Uevents are not the right thing to
 use here, and upstream udev should not paper-over broken kernel
 subsystems."

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Cc: Matthew Garrett <mjg59@srcf.ucam.org>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Cc: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/video/backlight/backlight.c

index bd2172c2d650705a5e9e03fe4a251aefccc7b789..31672740fe282db25380bca0106ad2b60f37a6f0 100644 (file)
@@ -189,8 +189,6 @@ static ssize_t brightness_store(struct device *dev,
        }
        mutex_unlock(&bd->ops_lock);
 
-       backlight_generate_event(bd, BACKLIGHT_UPDATE_SYSFS);
-
        return rc;
 }
 static DEVICE_ATTR_RW(brightness);