aboutsummaryrefslogtreecommitdiff
path: root/drivers/rapidio
AgeCommit message (Expand)AuthorFilesLines
2023-12-20rapidio/tsi721: fix kernel-doc warningsGravatar Randy Dunlap 2-16/+55
2023-10-05rapidio: make all 'class' structures constGravatar Ivan Orlov 2-15/+19
2023-04-27Merge tag 'mm-nonmm-stable-2023-04-27-16-01' of git://git.kernel.org/pub/scm/...Gravatar Linus Torvalds 1-3/+0
2023-04-08rapidio/tsi721: remove redundant pci_clear_masterGravatar Cai Huoqing 1-3/+0
2023-04-03driver core: class: remove struct class_interface * from callbacksGravatar Greg Kroah-Hartman 2-11/+4
2023-03-23driver core: bus: mark the struct bus_type for sysfs callbacks as constantGravatar Greg Kroah-Hartman 1-1/+1
2023-03-17driver core: class: remove module * from class_create()Gravatar Greg Kroah-Hartman 2-2/+2
2023-03-17drivers: remove struct module * setting from struct classGravatar Greg Kroah-Hartman 1-1/+0
2023-01-27driver core: make struct bus_type.uevent() take a const *Gravatar Greg Kroah-Hartman 1-2/+2
2022-12-11rapidio: devices: fix missing put_device in mport_cdev_openGravatar Cai Xinchen 1-0/+1
2022-12-11rapidio: fix possible UAF when kfifo_alloc() failsGravatar Wang Weiyang 1-4/+3
2022-11-30rapidio: rio: fix possible name leak in rio_register_mport()Gravatar Yang Yingliang 1-2/+7
2022-11-30rapidio: fix possible name leaks when rio_add_device() failsGravatar Yang Yingliang 2-4/+11
2022-11-18rapidio/tsi721: replace flush_scheduled_work() with flush_work()Gravatar Tetsuo Handa 1-1/+2
2022-04-29rapidio: remove unnecessary use of list iteratorGravatar Jakob Koschel 1-2/+2
2022-02-25rapidio/tsi721: Remove usage of the deprecated "pci-dma-compat.h" APIGravatar Christophe JAILLET 1-4/+4
2021-12-21rapidio: remove not used code about RIO_VID_TUNDRAGravatar Tiezhu Yang 4-573/+0
2021-11-06rapidio: avoid bogus __alloc_size warningGravatar Kees Cook 1-4/+5
2021-07-21bus: Make remove callback return voidGravatar Uwe Kleine-König 1-3/+1
2021-05-13rapidio: handle create_workqueue() failureGravatar Anirudh Rayabharam 1-1/+8
2021-05-13Revert "rapidio: fix a NULL pointer dereference when create_workqueue() fails"Gravatar Greg Kroah-Hartman 1-8/+0
2021-01-21rapidio: fix kernel-doc a markupGravatar Mauro Carvalho Chehab 1-1/+1
2020-12-15rapidio: remove unused rio_get_asm() and rio_get_device()Gravatar Sebastian Andrzej Siewior 1-81/+0
2020-10-16rapidio: fix the missed put_device() for rio_mport_add_riodevGravatar Jing Xiangfeng 1-1/+4
2020-10-16rapidio: fix error handling pathGravatar Souptick Joarder 1-6/+7
2020-09-05rapidio: Replace 'select' DMAENGINES 'with depends on'Gravatar Laurent Pinchart 1-1/+1
2020-08-23treewide: Use fallthrough pseudo-keywordGravatar Gustavo A. R. Silva 1-1/+1
2020-08-12rapidio/rio_mport_cdev: use array_size() helper in copy_{from,to}_user()Gravatar Gustavo A. R. Silva 1-2/+2
2020-08-12drivers/rapidio/rio-scan.c: use struct_size() helperGravatar Gustavo A. R. Silva 1-5/+3
2020-08-12drivers/rapidio/devices/rio_mport_cdev.c: use struct_size() helperGravatar Gustavo A. R. Silva 1-2/+1
2020-06-15rapidio: Replace zero-length array with flexible-arrayGravatar Gustavo A. R. Silva 1-1/+1
2020-06-14treewide: replace '---help---' in Kconfig files with 'help'Gravatar Masahiro Yamada 3-8/+8
2020-06-04rapidio: convert get_user_pages() --> pin_user_pages()Gravatar John Hubbard 1-8/+5
2020-06-04rapidio: avoid data race between file operation callbacks and mport_cdev_add().Gravatar Madhuparna Bhowmik 1-7/+7
2020-05-23rapidio: fix an error in get_user_pages_fast() error handlingGravatar John Hubbard 1-0/+5
2019-12-04drivers/rapidio/rio-access.c: fix missing include of <linux/rio_drv.h>Gravatar Ben Dooks (Codethink) 1-0/+2
2019-12-04drivers/rapidio/rio-driver.c: fix missing include of <linux/rio_drv.h>Gravatar Ben Dooks (Codethink) 1-0/+1
2019-10-14PCI: Add PCI_STD_NUM_BARS for the number of standard BARsGravatar Denis Efremov 1-1/+1
2019-07-17Merge branch 'akpm' (patches from Andrew)Gravatar Linus Torvalds 1-0/+2
2019-07-16drivers/rapidio/devices/rio_mport_cdev.c: NUL terminate some stringsGravatar Dan Carpenter 1-0/+2
2019-07-15docs: rapidio: add it to the driver APIGravatar Mauro Carvalho Chehab 1-1/+1
2019-07-15docs: rapidio: convert to ReSTGravatar Mauro Carvalho Chehab 1-1/+1
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157Gravatar Thomas Gleixner 1-10/+1
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156Gravatar Thomas Gleixner 2-28/+2
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152Gravatar Thomas Gleixner 12-60/+12
2019-05-21treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 7Gravatar Thomas Gleixner 1-13/+1
2019-05-21treewide: Add SPDX license identifier - Makefile/KconfigGravatar Thomas Gleixner 4-0/+4
2019-05-14rapidio: fix a NULL pointer dereference when create_workqueue() failsGravatar Kangjie Lu 1-0/+8
2019-05-14mm/gup: change GUP fast to use flags rather than a write 'bool'Gravatar Ira Weiny 1-1/+3
2019-03-07rapidio/mport_cdev: mark expected switch fall-throughGravatar Gustavo A. R. Silva 1-0/+1