Merge "gs101: Allow camera HAL to access interrupt handles" into sc-dev am: 7e581b9a7b am: c45a1b5828

Original change: https://googleplex-android-review.googlesource.com/c/device/google/gs101-sepolicy/+/15584607

Change-Id: Id66f403466d50ea3beb4663cc137e551a92e16f3
This commit is contained in:
Edmond Chung 2021-08-16 22:32:00 +00:00 committed by Automerger Merge Worker
commit 36f756e44b

View file

@ -86,3 +86,9 @@ allow hal_camera_default sysfs_devfreq_cur:file r_file_perms;
# allow camera HAL to read backlight of display # allow camera HAL to read backlight of display
allow hal_camera_default sysfs_leds:dir r_dir_perms; allow hal_camera_default sysfs_leds:dir r_dir_perms;
allow hal_camera_default sysfs_leds:file r_file_perms; allow hal_camera_default sysfs_leds:file r_file_perms;
# allow camera HAL to query interrupts and set interrupt affinity
allow hal_camera_default proc_irq:dir r_dir_perms;
allow hal_camera_default proc_irq:file rw_file_perms;
allow hal_camera_default proc_interrupts:dir r_dir_perms;
allow hal_camera_default proc_interrupts:file r_file_perms;