From: Julien Valroff Date: Tue, 14 Jul 2009 16:14:50 +0000 (+0000) Subject: Fix build with kernel >= 2.6.30 X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=95a945936ecb8d44867e738c75d0f857147ccc2c;p=omnibook.git Fix build with kernel >= 2.6.30 --- diff --git a/doc/ChangeLog b/doc/ChangeLog index 22bd15b..38749b9 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -12,6 +12,7 @@ Changelog file for omnibook package: * Applied patches from Azael Avalos to add support to Satellite X205 and other laptops based on ICH8 +* Fix build with kernel >= 2.6.30 2.20070211 Mathieu Bérard * Disable Acer support, acerhk module should provided better diff --git a/init.c b/init.c index 420226f..c5278fe 100644 --- a/init.c +++ b/init.c @@ -291,7 +291,9 @@ static int __init omnibook_init(struct omnibook_feature *feature) proc_entry->read_proc = &procfile_read_dispatch; if (feature->write) proc_entry->write_proc = &procfile_write_dispatch; - proc_entry->owner = THIS_MODULE; + #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30) + proc_entry->owner = THIS_MODULE; + #endif } list_add_tail(&feature->list, &omnibook_available_feature->list); return 0;