Denis wrote:
I have newly bought Samsung N145Plus Notebook. It fails to work with samsung-backlight driver (both version, one from voria ubuntu ppa and another from github).
The problem is that we don't have this device in samsung_dmi_table.
After some tweaking I have added code to support it
Quote:
{
.ident = "N145Plus",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD"),
DMI_MATCH(DMI_PRODUCT_NAME, "N250P"),
DMI_MATCH(DMI_BOARD_NAME, "N250P"),
},
.callback = dmi_check_cb,
},
I hope it will be helpfull.
System: Kubuntu 11.04 B2 (x86)
Where is the samsung_dmi_table located (path)?
My backlight was working before the recent samsung backlight update, and now it is not

Code:
$ sudo dmidecode -s system-product-name
N150P/N210P/N220P
Please add support
voRia
EditI managed to fix the brightness, It also fixed the flickering issue.
I went to /etc/modprobe.d/samsung-backlight.conf and changed
Code:
options samsung-backlight use_sabi=0 levels=8
to Code:
options samsung-backlight use_sabi=0 levels=8 force=1
Adding force=1, doesnt do anything bad does it? like add extra strain on the cpu.