summaryrefslogtreecommitdiff
path: root/drivers/video/fbdev/cyber2000fb.c
AgeCommit message (Expand)Author
2024-01-18Merge tag 'i2c-for-6.8-rc1-rebased' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds
2024-01-18fbdev: remove I2C_CLASS_DDC supportHeiner Kallweit
2023-11-29fbdev/cyber2000fb: Initialize fb_ops with fbdev macrosThomas Zimmermann
2023-10-19fbdev/cyber2000fb: Initialize fb_ops to fbdev I/O-memory helpersThomas Zimmermann
2023-07-24fbdev: Remove FBINFO_DEFAULT from kzalloc()'ed structsThomas Zimmermann
2022-11-24Backmerge tag 'v6.1-rc6' into drm-nextDave Airlie
2022-11-16fbdev: Add support for the nomodeset kernel parameterThomas Zimmermann
2022-10-27fbdev: cyber2000fb: fix missing pci_disable_device()Yang Yingliang
2022-10-05Merge tag 'drm-next-2022-10-05' of git://anongit.freedesktop.org/drm/drmLinus Torvalds
2022-08-24fbdev: Move fbdev drivers from strlcpy to strscpyWolfram Sang
2022-07-19fbdev: Remove conflicting devices on PCI busThomas Zimmermann
2020-09-08fbdev: cyber2000fb: use generic power managementVaibhav Gupta
2020-06-09mm: don't include asm/pgtable.h if linux/mm.h is already includedMike Rapoport
2020-04-07video: Add missing annotation for cyber2000fb_enable_ddc() and cyber2000fb_di...Jules Irenge
2019-12-05video: constify fb ops across all driversJani Nikula
2019-07-09Merge tag 'fbdev-v5.3' of git://github.com/bzolnier/linuxLinus Torvalds
2019-06-19treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500Thomas Gleixner
2019-06-19Merge tag 'topic/remove-fbcon-notifiers-2019-06-14-1' of git://anongit.freede...Bartlomiej Zolnierkiewicz
2019-06-12fbdev/cyber2000: Remove struct displayDaniel Vetter
2019-06-07video: fbdev: cyber2000fb: remove superfluous CONFIG_PCI ifdefBartlomiej Zolnierkiewicz
2017-09-04video: fbdev: make fb_videomode constBhumika Goyal
2014-09-30video: fbdev: cyber2000fb.c: use container_of to resolve cfb_info from fb_infoFabian Frederick
2014-04-17video: move fbdev to drivers/video/fbdevTomi Valkeinen
control the sending of the uevent properly, after everything is properly initialized. Cc: Kyle McMartin <kyle@parisc-linux.org> Cc: Matthew Wilcox <matthew@wil.cx> Cc: Grant Grundler <grundler@parisc-linux.org> Cc: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> 2008-01-24kobject: convert parisc/pdc_stable to use kobject_createGreg Kroah-Hartman Using a kset for this simple directory is an overkill. Cc: Kay Sievers <kay.sievers@vrfy.org> Cc: Thibaut VARENE <varenet@parisc-linux.org> Cc: Matthew Wilcox <matthew@wil.cx> Cc: Grant Grundler <grundler@parisc-linux.org> Cc: Kyle McMartin <kyle@parisc-linux.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> 2008-01-24firmware: change firmware_kset to firmware_kobjGreg Kroah-Hartman There is no firmware "subsystem" it's just a directory in /sys that other portions of the kernel want to hook into. So make it a kobject not a kset to help alivate anyone who tries to do some odd kset-like things with this. Cc: Kay Sievers <kay.sievers@vrfy.org> Cc: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> 2008-01-24kset: convert parisc/pdc_stable.c to use kset_createGreg Kroah-Hartman Dynamically create the kset instead of declaring it statically. This makes the kobject attributes now work properly that I broke in the previous patch. Cc: Kay Sievers <kay.sievers@vrfy.org> Cc: Thibaut VARENE <varenet@parisc-linux.org> Cc: Matthew Wilcox <matthew@wil.cx> Cc: Grant Grundler <grundler@parisc-linux.org> Cc: Kyle McMartin <kyle@parisc-linux.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> 2008-01-24kobject: convert parisc/pdc_stable to kobj_attr interfaceGreg Kroah-Hartman This makes the code a bit simpler and and gets us one step closer to deleting the deprecated subsys_attr code. NOTE, this needs the next patch in the series in order to work properly. This will build, but the sysfs files will not properly operate. Cc: Kay Sievers <kay.sievers@vrfy.org> Cc: Thibaut VARENE <varenet@parisc-linux.org> Cc: Matthew Wilcox <matthew@wil.cx> Cc: Grant Grundler <grundler@parisc-linux.org> Cc: Kyle McMartin <kyle@parisc-linux.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> 2008-01-24kobject: remove struct kobj_type from struct ksetGreg Kroah-Hartman We don't need a "default" ktype for a kset. We should set this explicitly every time for each kset. This change is needed so that we can make ksets dynamic, and cleans up one of the odd, undocumented assumption that the kset/kobject/ktype model has. This patch is based on a lot of help from Kay Sievers. Nasty bug in the block code was found by Dave Young <hidave.darkstar@gmail.com> Cc: Kay Sievers <kay.sievers@vrfy.org> Cc: Dave Young <hidave.darkstar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> 2007-10-18[PARISC] Quiet sysfs_create_link __must_check warnings in pdc_stableKyle McMartin Failing to create the links doesn't seem like a fatal error in these paths. WARN_ON seems better than nothing though. Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>