am 24d02652: Merge "Prevent EntropyMixer from registering with service manager."

* commit '24d02652bf8df12a41acf500d958109ef3d99b9a':
  Prevent EntropyMixer from registering with service manager.
This commit is contained in:
dcashman
2014-12-01 23:54:11 +00:00
committed by Android Git Automerger

View File

@@ -407,6 +407,7 @@ public final class SystemServer {
ConsumerIrService consumerIr = null;
AudioService audioService = null;
MmsServiceBroker mmsService = null;
EntropyMixer entropyMixer = null;
boolean disableStorage = SystemProperties.getBoolean("config.disable_storage", false);
boolean disableMedia = SystemProperties.getBoolean("config.disable_media", false);
@@ -430,7 +431,7 @@ public final class SystemServer {
ServiceManager.addService("telephony.registry", telephonyRegistry);
Slog.i(TAG, "Entropy Mixer");
ServiceManager.addService("entropy", new EntropyMixer(context));
entropyMixer = new EntropyMixer(context);
mContentResolver = context.getContentResolver();