Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'staging-5.7-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging

Pull staging driver fixes from Greg KH:
"Here are three small driver fixes for 5.7-rc5.

Two of these are documentation fixes:

- MAINTAINERS update due to removed driver

- removing Wolfram from the ks7010 driver TODO file

The other patch is a real fix:

- fix gasket driver to proper check the return value of a call

All of these have been in linux-next for a while with no reported
issues"

* tag 'staging-5.7-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging:
staging: gasket: Check the return value of gasket_get_bar_index()
staging: ks7010: remove me from CC list
MAINTAINERS: remove entry after hp100 driver removal

+4 -6
-5
MAINTAINERS
··· 7746 7746 S: Orphan 7747 7747 F: drivers/platform/x86/tc1100-wmi.c 7748 7748 7749 - HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series 7750 - M: Jaroslav Kysela <perex@perex.cz> 7751 - S: Obsolete 7752 - F: drivers/staging/hp/hp100.* 7753 - 7754 7749 HPET: High Precision Event Timers driver 7755 7750 M: Clemens Ladisch <clemens@ladisch.de> 7756 7751 S: Maintained
+4
drivers/staging/gasket/gasket_core.c
··· 925 925 gasket_get_bar_index(gasket_dev, 926 926 (vma->vm_pgoff << PAGE_SHIFT) + 927 927 driver_desc->legacy_mmap_address_offset); 928 + 929 + if (bar_index < 0) 930 + return DO_MAP_REGION_INVALID; 931 + 928 932 phys_base = gasket_dev->bar_data[bar_index].phys_base + phys_offset; 929 933 while (mapped_bytes < map_length) { 930 934 /*
-1
drivers/staging/ks7010/TODO
··· 30 30 31 31 Please send any patches to: 32 32 Greg Kroah-Hartman <gregkh@linuxfoundation.org> 33 - Wolfram Sang <wsa@the-dreams.de> 34 33 Linux Driver Project Developer List <driverdev-devel@linuxdriverproject.org>