diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-05-08 18:03:49 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-05-08 18:03:49 +0200 |
commit | e7a1c733fecd6bf71f87f74b36ab51bb3eafd8b3 (patch) | |
tree | 61dfcb05783742ee5ddc13d4bdb6f73d321cd001 /drivers | |
parent | Merge tag 'tty-5.7-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/greg... (diff) | |
parent | staging: gasket: Check the return value of gasket_get_bar_index() (diff) | |
download | linux-e7a1c733fecd6bf71f87f74b36ab51bb3eafd8b3.tar.xz linux-e7a1c733fecd6bf71f87f74b36ab51bb3eafd8b3.zip |
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
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/gasket/gasket_core.c | 4 | ||||
-rw-r--r-- | drivers/staging/ks7010/TODO | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/drivers/staging/gasket/gasket_core.c b/drivers/staging/gasket/gasket_core.c index 8e0575fcb4c8..67325fbaf760 100644 --- a/drivers/staging/gasket/gasket_core.c +++ b/drivers/staging/gasket/gasket_core.c @@ -925,6 +925,10 @@ do_map_region(const struct gasket_dev *gasket_dev, struct vm_area_struct *vma, gasket_get_bar_index(gasket_dev, (vma->vm_pgoff << PAGE_SHIFT) + driver_desc->legacy_mmap_address_offset); + + if (bar_index < 0) + return DO_MAP_REGION_INVALID; + phys_base = gasket_dev->bar_data[bar_index].phys_base + phys_offset; while (mapped_bytes < map_length) { /* diff --git a/drivers/staging/ks7010/TODO b/drivers/staging/ks7010/TODO index 87a6dac4890d..ab6f39175d99 100644 --- a/drivers/staging/ks7010/TODO +++ b/drivers/staging/ks7010/TODO @@ -30,5 +30,4 @@ Now the TODOs: Please send any patches to: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Wolfram Sang <wsa@the-dreams.de> Linux Driver Project Developer List <driverdev-devel@linuxdriverproject.org> |