Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

misc: fastrpc: Rename audio protection domain to root

The AUDIO_PD will be done via static pd, so the proper name here is
actually ROOT_PD.

Co-developed-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20221125071405.148786-3-srinivas.kandagatla@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Abel Vesa and committed by
Greg Kroah-Hartman
1959ab9e 70aa0a55

+2 -2
+2 -2
drivers/misc/fastrpc.c
··· 83 83 #define FASTRPC_RMID_INIT_MEM_UNMAP 11 84 84 85 85 /* Protection Domain(PD) ids */ 86 - #define AUDIO_PD (0) /* also GUEST_OS PD? */ 86 + #define ROOT_PD (0) 87 87 #define USER_PD (1) 88 88 #define SENSORS_PD (2) 89 89 ··· 1886 1886 err = fastrpc_invoke(fl, argp); 1887 1887 break; 1888 1888 case FASTRPC_IOCTL_INIT_ATTACH: 1889 - err = fastrpc_init_attach(fl, AUDIO_PD); 1889 + err = fastrpc_init_attach(fl, ROOT_PD); 1890 1890 break; 1891 1891 case FASTRPC_IOCTL_INIT_ATTACH_SNS: 1892 1892 err = fastrpc_init_attach(fl, SENSORS_PD);