Skip to content
Snippets Groups Projects
Commit cb839c64 authored by Alex Klyubin's avatar Alex Klyubin
Browse files

Remove unused hal_impl_domain macro

All previous users of this macro have been switched to
hal_server_domain macro.

Test: no hal_impl_domain in system/sepolicy/ and device/**/sepolicy
Test: mmm system/sepolicy
Bug: 34170079
Change-Id: I4a71b3fd5046c0d215b056f1cae25fe6bda0fb45
parent cc877324
No related branches found
No related tags found
No related merge requests found
...@@ -148,26 +148,6 @@ define(`bluetooth_domain', ` ...@@ -148,26 +148,6 @@ define(`bluetooth_domain', `
typeattribute $1 bluetoothdomain; typeattribute $1 bluetoothdomain;
') ')
# TODO: Remove hal_impl_domain once all uses have been switched to hal_server_domain.
#####################################
# hal_impl_domain(domain[, hal_type_attr])
# Allow a base set of permissions required for a domain to host a
# HAL implementation.
#
# Optionally, the type of the HAL can be specified as the second
# argument. This is useful for HALs which may have multiple
# implementations. Attributes are used to group the various
# implementations of such HALs.
#
# For example, default implementation of Foo HAL:
# type hal_foo_default, domain;
# hal_impl_domain(hal_foo_default, hal_foo)
#
define(`hal_impl_domain', `
typeattribute $1 halserverdomain;
ifelse($2, `', `', `typeattribute $1 $2;')
')
##################################### #####################################
# hal_server_domain(domain, hal_type) # hal_server_domain(domain, hal_type)
# Allow a base set of permissions required for a domain to offer a # Allow a base set of permissions required for a domain to offer a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment