Searched refs:vga_get (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/include/linux/ |
H A D | vgaarb.h | 77 extern int vga_get(struct pci_dev *pdev, unsigned int rsrc, int interruptible); 79 static inline int vga_get(struct pci_dev *pdev, unsigned int rsrc, int interruptible) { return 0; } in vga_get() function 87 * Shortcut to vga_get with interruptible set to true. 94 return vga_get(pdev, rsrc, 1); in vga_get_interruptible() 98 * vga_get_uninterruptible - shortcut to vga_get() 102 * Shortcut to vga_get with interruptible set to false. 109 return vga_get(pdev, rsrc, 0); in vga_get_uninterruptible()
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | vgaarb.h | 30 int vga_get(struct pci_dev *pdev, unsigned int rsrc, int interruptible); 42 static inline int vga_get(struct pci_dev *pdev, unsigned int rsrc, in vga_get() function 73 * Shortcut to vga_get with interruptible set to true. 80 return vga_get(pdev, rsrc, 1); in vga_get_interruptible() 84 * vga_get_uninterruptible - shortcut to vga_get() 88 * Shortcut to vga_get with interruptible set to false. 95 return vga_get(pdev, rsrc, 0); in vga_get_uninterruptible()
|
/kernel/linux/linux-6.6/drivers/pci/ |
H A D | vgaarb.c | 130 * us about it, so we basically never allow anybody to succeed a vga_get(). 401 * vga_get - acquire & lock VGA resources 434 int vga_get(struct pci_dev *pdev, unsigned int rsrc, int interruptible) in vga_get() function 484 EXPORT_SYMBOL(vga_get); variable 491 * Perform the same operation as vga_get(), but return an error (-EBUSY) 532 * Release resources previously locked by vga_get() or vga_tryget(). The 533 * resources aren't disabled right away, so that a subsequent vga_get() on
|
/kernel/linux/linux-5.10/drivers/gpu/vga/ |
H A D | vgaarb.c | 156 * vga_get()... 432 * vga_get - acquire & locks VGA resources 465 int vga_get(struct pci_dev *pdev, unsigned int rsrc, int interruptible) in vga_get() function 515 EXPORT_SYMBOL(vga_get); variable 522 * This function performs the same operation as vga_get(), but will return an 563 * This fuction releases resources previously locked by vga_get() or 565 * vga_get() on the same card will succeed immediately. Resources have a
|
Completed in 6 milliseconds