Skip to content

Commit 995e9f0

Browse files
committed
kernel: bcm2835-codec: Return empty buffers to the VPU instead of queueing to vbuf2
See: raspberrypi/linux#4961 kernel: overlays/rpi-display: Add support for DRM driver See: raspberrypi/linux#4959 kernel: backport: drm/tiny: Add MIPI DBI compatible SPI driver See: raspberrypi/linux#4954 kernel: drivers: staging: bcm2835-isp: Clear LS table handle in the firmware See: raspberrypi/linux#4952
1 parent ea4c803 commit 995e9f0

File tree

122 files changed

+144
-27
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+144
-27
lines changed

boot/kernel.img

8 Bytes
Binary file not shown.

boot/kernel7.img

0 Bytes
Binary file not shown.

boot/kernel7l.img

0 Bytes
Binary file not shown.

boot/kernel8.img

-190 Bytes
Binary file not shown.

boot/overlays/README

Lines changed: 91 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2386,6 +2386,73 @@ Params: krnbt Set to "on" to enable autoprobing of Bluetooth
23862386
driver without need of hciattach/btattach
23872387

23882388

2389+
Name: mipi-dbi-spi
2390+
Info: Overlay for SPI-connected MIPI DBI displays using the panel-mipi-dbi
2391+
driver. The driver will load a file /lib/firmware/panel.bin containing
2392+
the initialisation commands.
2393+
2394+
Example:
2395+
dtoverlay=mipi-dbi-spi,spi0-0,speed=70000000
2396+
dtparam=width=320,height=240
2397+
dtparam=reset-gpio=23,dc-gpio=24
2398+
dtparam=backlight-gpio=18
2399+
2400+
Compared to fbtft panel-mipi-dbi runs pixel data at spi-max-frequency
2401+
and init commands at 10MHz. This makes it possible to push the envelope
2402+
without messing up the controller configuration due to command
2403+
transmission errors.
2404+
2405+
For devices on spi1 or spi2, the interfaces should be enabled
2406+
with one of the spi1-1/2/3cs and/or spi2-1/2/3cs overlays.
2407+
2408+
See https://github.com/notro/panel-mipi-dbi/wiki for more info.
2409+
2410+
Load: dtoverlay=mipi-dbi-spi,<param>=<val>
2411+
Params:
2412+
compatible Set the compatible string to load a different
2413+
firmware file. Both the panel compatible value
2414+
used to load the firmware file and the value
2415+
used to load the driver has to be set having a
2416+
NUL (\0) separator between them.
2417+
Example:
2418+
dtparam=compatible=mypanel\0panel-mipi-dbi-spi
2419+
spi<n>-<m> Configure device at spi<n>, cs<m>
2420+
(boolean, required)
2421+
speed SPI bus speed in Hz (default 32000000)
2422+
cpha Shifted SPI clock phase (CPHA) mode
2423+
cpol Inverse SPI clock polarity (CPOL) mode
2424+
write-only Controller is not readable
2425+
(ie. MISO is not wired up).
2426+
2427+
width Panel width in pixels (required)
2428+
height Panel height in pixels (required)
2429+
width-mm Panel width in mm
2430+
height-mm Panel height in mm
2431+
x-offset Panel x-offset in controller RAM
2432+
y-offset Panel y-offset in controller RAM
2433+
2434+
clock-frequency Panel clock frequency in Hz
2435+
(optional, just informational).
2436+
2437+
reset-gpio GPIO pin to be used for RESET
2438+
dc-gpio GPIO pin to be used for D/C
2439+
2440+
backlight-gpio GPIO pin to be used for backlight control
2441+
(default of none).
2442+
backlight-pwm PWM channel to be used for backlight control
2443+
(default of none). NB Disables audio headphone
2444+
output as that also uses PWM.
2445+
backlight-pwm-chan Choose channel on &pwm node for backlight
2446+
control (default 0).
2447+
backlight-pwm-gpio GPIO pin to be used for the PWM backlight. See
2448+
pwm-2chan for valid options (default 18).
2449+
backlight-pwm-func Pin function of GPIO used for the PWM backlight.
2450+
See pwm-2chan for valid options (default 2).
2451+
backlight-def-brightness
2452+
Set the default brightness. Normal range 1-16.
2453+
(default 16).
2454+
2455+
23892456
Name: mlx90640
23902457
Info: Overlay for i2c connected mlx90640 thermal camera
23912458
Load: dtoverlay=mlx90640
@@ -2846,14 +2913,36 @@ Params: <None>
28462913

28472914
Name: rpi-display
28482915
Info: RPi-Display - 2.8" Touch Display by Watterott
2916+
Linux has 2 drivers that support this display and this overlay supports
2917+
both.
2918+
2919+
Examples:
2920+
fbtft/fb_ili9341: dtoverlay=rpi-display
2921+
drm/mi0283qt: dtoverlay=rpi-display,drm,backlight-pwm,rotate=180
2922+
2923+
Some notable differences with the DRM driver compared to fbtft:
2924+
- The display is turned on when it's first used and not on driver load
2925+
as with fbtft. So if nothing uses the display it stays off.
2926+
- Can run with a higher SPI clock increasing framerate. This is possible
2927+
since the driver avoids messing up the controller configuration due to
2928+
transmission errors by running config commands at 10MHz and only pixel
2929+
data at full speed (occasional pixel glitch might occur).
2930+
- PWM backlight is supported.
2931+
28492932
Load: dtoverlay=rpi-display,<param>=<val>
28502933
Params: speed Display SPI bus speed
28512934
rotate Display rotation {0,90,180,270}
2852-
fps Delay between frame updates
2853-
debug Debug output level {0-7}
2935+
fps Delay between frame updates (fbtft only)
2936+
debug Debug output level {0-7} (fbtft only)
28542937
xohms Touchpanel sensitivity (X-plate resistance)
28552938
swapxy Swap x and y axis
28562939
backlight Change backlight GPIO pin {e.g. 12, 18}
2940+
(fbtft only)
2941+
drm Use DRM/KMS driver mi0283qt instead of fbtft.
2942+
Set the SPI clock to 70MHz.
2943+
This has to be the first parameter.
2944+
backlight-pwm Use pwm for backlight (drm only). NB: Disables
2945+
audio headphone output as that also uses PWM.
28572946

28582947

28592948
Name: rpi-ft5406

boot/overlays/mipi-dbi-spi.dtbo

4.99 KB
Binary file not shown.

boot/overlays/rpi-display.dtbo

1.46 KB
Binary file not shown.

extra/Module.symvers

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10284,7 +10284,7 @@
1028410284
0xa0bae521 usb_add_config_only drivers/usb/gadget/libcomposite EXPORT_SYMBOL_GPL
1028510285
0xcd2ba798 dm_bufio_forget drivers/md/dm-bufio EXPORT_SYMBOL_GPL
1028610286
0x4407734b drm_class_device_register drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
10287-
0x75a1d803 mipi_dbi_dev_init drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
10287+
0x5311f2fa mipi_dbi_dev_init drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1028810288
0x07874ca9 drm_gtf_mode drivers/gpu/drm/drm EXPORT_SYMBOL
1028910289
0x10403b33 snd_rawmidi_transmit_empty sound/core/snd-rawmidi EXPORT_SYMBOL
1029010290
0x2f0b2287 snd_timer_open sound/core/snd-timer EXPORT_SYMBOL
@@ -10445,7 +10445,7 @@
1044510445
0x4449e1dd synth_buffer_clear drivers/accessibility/speakup/speakup EXPORT_SYMBOL_GPL
1044610446
0x9348f823 ts2020_attach drivers/media/dvb-frontends/ts2020 EXPORT_SYMBOL
1044710447
0x869921a4 s5h1432_attach drivers/media/dvb-frontends/s5h1432 EXPORT_SYMBOL
10448-
0xd84ec6b0 mipi_dbi_poweron_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
10448+
0x82abc996 mipi_dbi_poweron_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1044910449
0x59056243 drm_mm_replace_node drivers/gpu/drm/drm EXPORT_SYMBOL
1045010450
0x745e2e50 l2tp_session_get net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
1045110451
0xcd396ff3 em28xx_setup_xc3028 drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
@@ -10523,6 +10523,7 @@
1052310523
0x9015632e usb_cdc_wdm_register drivers/usb/class/cdc-wdm EXPORT_SYMBOL
1052410524
0x0647684a ath9k_hw_set_tx_filter drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
1052510525
0xef43a1c5 iscsi_update_cmdsn drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
10526+
0xae02f20a of_get_drm_panel_display_mode drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
1052610527
0xf6eb9ee5 drm_atomic_helper_wait_for_vblanks drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
1052710528
0x6f811568 snd_devm_card_new sound/core/snd EXPORT_SYMBOL_GPL
1052810529
0x1ee9086c __gameport_register_driver drivers/input/gameport/gameport EXPORT_SYMBOL
@@ -10577,7 +10578,7 @@
1057710578
0x77a95490 rtl8192_phy_check_is_legal_rfpath drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
1057810579
0x2327d91c _rtl92c_phy_calculate_bit_shift drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
1057910580
0xcb82fefd lbs_host_sleep_cfg drivers/net/wireless/marvell/libertas/libertas EXPORT_SYMBOL_GPL
10580-
0xc248fe52 mipi_dbi_enable_flush drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
10581+
0xc25bf979 mipi_dbi_enable_flush drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1058110582
0x6007889e drm_master_internal_acquire drivers/gpu/drm/drm EXPORT_SYMBOL
1058210583
0x9d4e3c93 async_raid6_2data_recov crypto/async_tx/async_raid6_recov EXPORT_SYMBOL_GPL
1058310584
0x2d7be544 cfg80211_put_bss net/wireless/cfg80211 EXPORT_SYMBOL
@@ -12961,7 +12962,7 @@
1296112962
0x5ec15f45 dm_internal_resume drivers/md/dm-mod EXPORT_SYMBOL_GPL
1296212963
0x00a280ec dvb_dmx_swfilter_raw drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
1296312964
0xae2ee5fd dvb_dmx_swfilter_204 drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
12964-
0xfdad5d23 mipi_dbi_poweron_conditional_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
12965+
0xba72dba8 mipi_dbi_poweron_conditional_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1296512966
0x20ac43c8 arizona_eq_coeff_put sound/soc/codecs/snd-soc-arizona EXPORT_SYMBOL_GPL
1296612967
0x8c6a2ad6 v4l2_ctrl_request_setup drivers/media/v4l2-core/videodev EXPORT_SYMBOL
1296712968
0x12de52a2 ath9k_hw_beaconq_setup drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
@@ -14426,7 +14427,7 @@
1442614427
0xb6879c01 dm_btree_lookup_next drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
1442714428
0x2d09d4d8 dvb_usb_generic_rw drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
1442814429
0xd63533bf rndis_uninit drivers/usb/gadget/function/usb_f_rndis EXPORT_SYMBOL_GPL
14429-
0x1adf301b mipi_dbi_dev_init_with_formats drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
14430+
0x739c8fac mipi_dbi_dev_init_with_formats drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1443014431
0x850438d2 xfrm6_rcv_encap net/ipv6/ipv6 EXPORT_SYMBOL
1443114432
0x9648f09d devm_of_iio_channel_get_by_name drivers/iio/industrialio EXPORT_SYMBOL_GPL
1443214433
0x1794087b isl6405_attach drivers/media/dvb-frontends/isl6405 EXPORT_SYMBOL

extra/Module7.symvers

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10532,7 +10532,7 @@
1053210532
0xe1faf803 usb_add_config_only drivers/usb/gadget/libcomposite EXPORT_SYMBOL_GPL
1053310533
0xcd2ba798 dm_bufio_forget drivers/md/dm-bufio EXPORT_SYMBOL_GPL
1053410534
0x51f297eb drm_class_device_register drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
10535-
0xe7f1c255 mipi_dbi_dev_init drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
10535+
0xa8ecd415 mipi_dbi_dev_init drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1053610536
0x417d24e1 drm_gtf_mode drivers/gpu/drm/drm EXPORT_SYMBOL
1053710537
0x27f1095b snd_rawmidi_transmit_empty sound/core/snd-rawmidi EXPORT_SYMBOL
1053810538
0x4eb7133e snd_timer_open sound/core/snd-timer EXPORT_SYMBOL
@@ -10694,7 +10694,7 @@
1069410694
0x4449e1dd synth_buffer_clear drivers/accessibility/speakup/speakup EXPORT_SYMBOL_GPL
1069510695
0x66aa1928 ts2020_attach drivers/media/dvb-frontends/ts2020 EXPORT_SYMBOL
1069610696
0x362699ec s5h1432_attach drivers/media/dvb-frontends/s5h1432 EXPORT_SYMBOL
10697-
0xe7a3713a mipi_dbi_poweron_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
10697+
0xd5517546 mipi_dbi_poweron_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1069810698
0x59056243 drm_mm_replace_node drivers/gpu/drm/drm EXPORT_SYMBOL
1069910699
0x8e09c117 l2tp_session_get net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
1070010700
0xe09477d4 em28xx_setup_xc3028 drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
@@ -10772,6 +10772,7 @@
1077210772
0xe01256ce usb_cdc_wdm_register drivers/usb/class/cdc-wdm EXPORT_SYMBOL
1077310773
0x8db96cbe ath9k_hw_set_tx_filter drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
1077410774
0xf36e9dcd iscsi_update_cmdsn drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
10775+
0xe2b89ae0 of_get_drm_panel_display_mode drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
1077510776
0x55640d00 drm_atomic_helper_wait_for_vblanks drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
1077610777
0xb38a2e8e snd_devm_card_new sound/core/snd EXPORT_SYMBOL_GPL
1077710778
0x3418a180 __gameport_register_driver drivers/input/gameport/gameport EXPORT_SYMBOL
@@ -10826,7 +10827,7 @@
1082610827
0xa1f645de rtl8192_phy_check_is_legal_rfpath drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
1082710828
0x2327d91c _rtl92c_phy_calculate_bit_shift drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
1082810829
0x93f7d737 lbs_host_sleep_cfg drivers/net/wireless/marvell/libertas/libertas EXPORT_SYMBOL_GPL
10829-
0xe5d9df61 mipi_dbi_enable_flush drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
10830+
0x8d73fb94 mipi_dbi_enable_flush drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1083010831
0x7ebeef34 drm_master_internal_acquire drivers/gpu/drm/drm EXPORT_SYMBOL
1083110832
0x85d546a2 async_raid6_2data_recov crypto/async_tx/async_raid6_recov EXPORT_SYMBOL_GPL
1083210833
0x2fff14fe cfg80211_put_bss net/wireless/cfg80211 EXPORT_SYMBOL
@@ -13205,7 +13206,7 @@
1320513206
0x70c9554d dm_internal_resume drivers/md/dm-mod EXPORT_SYMBOL_GPL
1320613207
0x989a4a69 dvb_dmx_swfilter_raw drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
1320713208
0xe7367529 dvb_dmx_swfilter_204 drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
13208-
0x8ddb605b mipi_dbi_poweron_conditional_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
13209+
0xe605c551 mipi_dbi_poweron_conditional_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1320913210
0x15a90a1c arizona_eq_coeff_put sound/soc/codecs/snd-soc-arizona EXPORT_SYMBOL_GPL
1321013211
0xff6fa2b0 v4l2_ctrl_request_setup drivers/media/v4l2-core/videodev EXPORT_SYMBOL
1321113212
0x57f10fd8 ath9k_hw_beaconq_setup drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
@@ -14669,7 +14670,7 @@
1466914670
0xb6879c01 dm_btree_lookup_next drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
1467014671
0x838f24d0 dvb_usb_generic_rw drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
1467114672
0xaabd4bf6 rndis_uninit drivers/usb/gadget/function/usb_f_rndis EXPORT_SYMBOL_GPL
14672-
0xa4ef124a mipi_dbi_dev_init_with_formats drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
14673+
0x5845ced7 mipi_dbi_dev_init_with_formats drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1467314674
0x9d0fd9ab xfrm6_rcv_encap net/ipv6/ipv6 EXPORT_SYMBOL
1467414675
0xd5e360da devm_of_iio_channel_get_by_name drivers/iio/industrialio EXPORT_SYMBOL_GPL
1467514676
0x860c3841 isl6405_attach drivers/media/dvb-frontends/isl6405 EXPORT_SYMBOL

extra/Module7l.symvers

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11037,7 +11037,7 @@
1103711037
0xcd2ba798 dm_bufio_forget drivers/md/dm-bufio EXPORT_SYMBOL_GPL
1103811038
0x4a442997 drm_class_device_register drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
1103911039
0x140cdeb0 drm_sched_job_init drivers/gpu/drm/scheduler/gpu-sched EXPORT_SYMBOL
11040-
0x33906db9 mipi_dbi_dev_init drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
11040+
0x339371e0 mipi_dbi_dev_init drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1104111041
0x238c44e7 drm_gtf_mode drivers/gpu/drm/drm EXPORT_SYMBOL
1104211042
0x17653772 snd_rawmidi_transmit_empty sound/core/snd-rawmidi EXPORT_SYMBOL
1104311043
0xdee82545 snd_timer_open sound/core/snd-timer EXPORT_SYMBOL
@@ -11204,7 +11204,7 @@
1120411204
0x4449e1dd synth_buffer_clear drivers/accessibility/speakup/speakup EXPORT_SYMBOL_GPL
1120511205
0xfbca199f ts2020_attach drivers/media/dvb-frontends/ts2020 EXPORT_SYMBOL
1120611206
0x389cbb6f s5h1432_attach drivers/media/dvb-frontends/s5h1432 EXPORT_SYMBOL
11207-
0x26245e4e mipi_dbi_poweron_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
11207+
0x1c6f6bb8 mipi_dbi_poweron_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1120811208
0x59056243 drm_mm_replace_node drivers/gpu/drm/drm EXPORT_SYMBOL
1120911209
0xd7bd3b32 l2tp_session_get net/l2tp/l2tp_core EXPORT_SYMBOL_GPL
1121011210
0xa2d86583 em28xx_setup_xc3028 drivers/media/usb/em28xx/em28xx EXPORT_SYMBOL_GPL
@@ -11289,6 +11289,7 @@
1128911289
0xf2bd62bf usb_cdc_wdm_register drivers/usb/class/cdc-wdm EXPORT_SYMBOL
1129011290
0x86b08d02 ath9k_hw_set_tx_filter drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
1129111291
0xd68183b3 iscsi_update_cmdsn drivers/scsi/libiscsi EXPORT_SYMBOL_GPL
11292+
0xe50f3445 of_get_drm_panel_display_mode drivers/gpu/drm/drm EXPORT_SYMBOL_GPL
1129211293
0x40c885e8 drm_atomic_helper_wait_for_vblanks drivers/gpu/drm/drm_kms_helper EXPORT_SYMBOL
1129311294
0x098c0822 snd_devm_card_new sound/core/snd EXPORT_SYMBOL_GPL
1129411295
0x1aa2bd2d __gameport_register_driver drivers/input/gameport/gameport EXPORT_SYMBOL
@@ -11348,7 +11349,7 @@
1134811349
0xb5029c4e rtl8192_phy_check_is_legal_rfpath drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
1134911350
0x2327d91c _rtl92c_phy_calculate_bit_shift drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common EXPORT_SYMBOL
1135011351
0x6584064d lbs_host_sleep_cfg drivers/net/wireless/marvell/libertas/libertas EXPORT_SYMBOL_GPL
11351-
0x9d687b9f mipi_dbi_enable_flush drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
11352+
0x78240ab7 mipi_dbi_enable_flush drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1135211353
0x5fda1f1d drm_master_internal_acquire drivers/gpu/drm/drm EXPORT_SYMBOL
1135311354
0x06c2c24f async_raid6_2data_recov crypto/async_tx/async_raid6_recov EXPORT_SYMBOL_GPL
1135411355
0xc249cdc1 cfg80211_put_bss net/wireless/cfg80211 EXPORT_SYMBOL
@@ -13827,7 +13828,7 @@
1382713828
0xa0c395f7 dm_internal_resume drivers/md/dm-mod EXPORT_SYMBOL_GPL
1382813829
0x989a4a69 dvb_dmx_swfilter_raw drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
1382913830
0xe7367529 dvb_dmx_swfilter_204 drivers/media/dvb-core/dvb-core EXPORT_SYMBOL
13830-
0x7188b336 mipi_dbi_poweron_conditional_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
13831+
0x0a5cbc14 mipi_dbi_poweron_conditional_reset drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1383113832
0xd865bae9 arizona_eq_coeff_put sound/soc/codecs/snd-soc-arizona EXPORT_SYMBOL_GPL
1383213833
0x7611ce25 v4l2_ctrl_request_setup drivers/media/v4l2-core/videodev EXPORT_SYMBOL
1383313834
0x9b4a4e36 ath9k_hw_beaconq_setup drivers/net/wireless/ath/ath9k/ath9k_hw EXPORT_SYMBOL
@@ -15353,7 +15354,7 @@
1535315354
0xb6879c01 dm_btree_lookup_next drivers/md/persistent-data/dm-persistent-data EXPORT_SYMBOL_GPL
1535415355
0x4f165919 dvb_usb_generic_rw drivers/media/usb/dvb-usb/dvb-usb EXPORT_SYMBOL
1535515356
0x4b8ff4e1 rndis_uninit drivers/usb/gadget/function/usb_f_rndis EXPORT_SYMBOL_GPL
15356-
0x495b517b mipi_dbi_dev_init_with_formats drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
15357+
0xe09d7b2e mipi_dbi_dev_init_with_formats drivers/gpu/drm/drm_mipi_dbi EXPORT_SYMBOL
1535715358
0x81e2e103 xfrm6_rcv_encap net/ipv6/ipv6 EXPORT_SYMBOL
1535815359
0xbbeb61f6 devm_of_iio_channel_get_by_name drivers/iio/industrialio EXPORT_SYMBOL_GPL
1535915360
0xf6eea162 ahci_host_activate drivers/ata/libahci EXPORT_SYMBOL_GPL

0 commit comments

Comments
 (0)