summaryrefslogtreecommitdiff
path: root/include/uapi/linux/can
ModeNameSize
-rw-r--r--bcm.h4125logplain
-rw-r--r--error.h7102logplain
-rw-r--r--gw.h8036logplain
-rw-r--r--isotp.h7518logplain
-rw-r--r--j1939.h2413logplain
-rw-r--r--netlink.h5193logplain
-rw-r--r--raw.h3627logplain
-rw-r--r--vxcan.h242logplain
/gpu/drm/r128?h=master&id=3c1aa3b3872788f0cc567d7d9046039b95654a51'>drm/r128: drop drm_os_linux dependenciesSam Ravnborg Drop use of drm_os_linux macros. Simple 1:1 replacements of - DRM_UDELAY - DRM_CURRENTPID - DRM_READ - DRM_WRITE With this change we do not need to introduce the deprecated drm_os_linux.h header when we drop use of drmP.h. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Daniel Vetter <daniel@ffwll.ch> Cc: David Airlie <airlied@linux.ie> Link: https://patchwork.freedesktop.org/patch/msgid/20190605141321.17819-2-sam@ravnborg.org 2019-05-21treewide: Add SPDX license identifier - Makefile/KconfigThomas Gleixner Add SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any form These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 2019-01-29drm/irq: Ditch DRIVER_IRQ_SHAREDDaniel Vetter This is only used by drm_irq_install(), which is an optional helper. For legacy pci devices this is required (due to interrupt sharing without msi/msi-x), and just making this the default exactly matches the behaviour of all existing drivers using the drm_irq_install() helpers. In case that ever becomes wrong drivers can roll their own irq handling, as many drivers already do (for other reasons like needing a threaded interrupt handler, or having an entire pile of different interrupt sources). v2: Rebase v3: Improve commit message (Emil) Cc: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190129104248.26607-3-daniel.vetter@ffwll.ch 2018-12-17drm/ati_pcigart: Fix error code in drm_ati_pcigart_init()Dan Carpenter The drm_ati_pcigart_init() function was originally suppose to return one on success and zero on failure, but these days it returns a mix of zero, one and -ENOMEM on failure. This patch cleans it up and modifies the caller so now the function returns zero on success and negative error codes on failure. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20181217070344.GC12159@kadam