forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branches 'for-opinicus/asoc', 'for-opinicus/gpio', 'for-opinicu…
…s/input', 'for-opinicus/leds', 'for-opinicus/pwm', 'for-opinicus/rtc', 'for-opinicus/regulator', 'for-opinicus/serial', 'for-opinicus/fbdev' and 'for-opinicus/hdmi' into opinicus-4.14-0 * for-opinicus/asoc: ASoC: sun4i-is: also check for NULL on reset pin request * for-opinicus/gpio: gpio: pca953x: add support for the NXP pca9570 * for-opinicus/input: input: edt-ft5x06: force touchscreen to remain active input: edt-ft5x06: add polldev as an option input: edt-ft5x06: take into account the number of fingers input: edt-ft5x06: fix multi-touch handling input: edt-ft5x06: sanity check on input input: edt-ft5x06: silence deferral error input: edt-ft5x06: use less magic and more defines input: edt-ft5x06: shorten defines input: edt-ft5x06: minor consistency cleanup/line length reduction input: edt-ft5x06: fix some whitespace/ident issues input: edt-ft5x06: only enable the irq when needed input: edt-ft5x06: cleanup headers input: edt-ft5x06: add support for the ft5426 controller input: edt-ft5x06: group r, w and rw functions input: of_touchscreen: add support for minimum sizes input: of_touchscreen: rename touchscreen-size-[xy] input: of_touchscreen: shorten variable names * for-opinicus/leds: leds: pca963x: set DMBLNK as default during probe leds: pca963x: remove whitespace and checkpatch problems leds: pca963x: refactor initial led output a little leds: pca963x: save mode when setting power_state leds: pca963x: add defines and remove some magic values leds: pca963x: alphabetize headers leds: pca963x: abort probe if device is not connected * for-opinicus/pwm: pwm: core: do not block apply->state on period * for-opinicus/rtc: rtc: sun6i: add missing header * for-opinicus/regulator: power: supply: axp288: use the BIT() macro power: supply: axp20x: add missing include bitops.h mfd: axp20x: use explicit bit defines mfd: axp20x: fixup includes regulator: dts: set proper lradc vref on OLinuXino Lime2 regulator: dts: add full voltage range to LDO4 on the Lime2 regulator: dts: enable soft-start and ramp delay for the OLinuXino Lime2 regulator: axp20x: add software based soft_start for LDO3 regulator: axp20x: add support for set_ramp_delay regulator: core: enable power when setting up constraints regulator: axp20x: name voltage ramping define properly regulator: axp20x: use defines for masks * for-opinicus/serial: serial: 8250: expand debug ability of the irq handler serial: 8250: Only confirm handled interrupts on supported ones serial: 8250_dw: Make register access consistent serial: 8250_dw: Use serial port assessor wrapper serial: 8250: Do not treat the IIR register as a bitfield serial: 8250: Minor cleanups serial: 8250: Replace asm/irq with linux/irqreturn, linux/interrupt * for-opinicus/fbdev: (21 commits) fbdev: ssd1307fb: Do not always clear the display on boot fbdev: ssd1307fb: Limit to support 0 - 180 rotation only fbdev: ssd1307fb: Add hardware accelerated rotation support fbdev: ssd1307fb: Ensure display is toggled properly fbdev: ssd1307fb: Ensure set_par can do bring-up fbdev: ssd1307fb: Remove unused forward declaration fbdev: ssd1307fb: Reduce magic values with defines fbdev: ssd1307fb: Use resolution instead of dimensions fbdev: ssd1307fb: cleanup: Group fb_info.fix fbdev: ssd1307fb: Use ratelimited error printing fbdev: ssd1307fb: Make output a little more consistent fbdev: ssd1307fb: Rename i2c device ids fbdev: ssd1307fb: Abort probe if we cannot talk to the display fbdev: sysfs: Add rotation in degrees support to validation fbdev: sysfs: Expand input validation to degree's fbdev: sysfs: Input validation fbdev: sysfs: Replace simple_strtoul with kstrtoul fbdev: sysfs: Sort headers fbdev: of: Add parameter to not clear screen on probe fbdev: of: Add of parsing helper ... * for-opinicus/hdmi: arm/dts: Use hdmi_i2c node on the OLinuXino Lime2 [WIP-do-not-merge] drm/sunxi: Split off hdmi-i2c as a separated driver drm: sun4i: check for i2c busy status drm/sun4i: make fifo_transfer more verbose in case of error drm/sun4i: i2c: consolidate ddc items drm/sun4i: make bool assignment explicit drm/sun4i: enable/disable the tmds clock on use drm/sun4i: Fix NULL pointer dereference at unbind drm/sun4i: improve header readability drm/sun4i: Fix Kconfig indenting drm/edid: Prevent NULL pointer deref when there is no I2C adapter
- Loading branch information
Showing
48 changed files
with
3,194 additions
and
1,309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
General framebuffer properties: | ||
|
||
Optional properties for framebuffers: | ||
- no-clear-on-probe : Do not clear the framebuffer during probe (bool) | ||
- rotate : rotate a framebuffer over 0, 1, 2 and 3 (or 0, 90, | ||
180 and 270) degree's (integer) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.