diff --git a/device.te b/device.te
index 22514d51ffbbc3789273ca069d77b752fcdb6ea5..7e0073f7ba1d55d79eb8479f31e85d7022ba4f82 100644
--- a/device.te
+++ b/device.te
@@ -52,7 +52,6 @@ type uio_device, dev_type;
 type tun_device, dev_type, mlstrustedobject;
 type usbaccessory_device, dev_type, mlstrustedobject;
 type usb_device, dev_type, mlstrustedobject;
-type klog_device, dev_type;
 type properties_device, dev_type;
 type properties_serial, dev_type;
 type i2c_device, dev_type;
diff --git a/file_contexts b/file_contexts
index b2499f9f8b1cd25237bc92889a7f55b04e7eae7e..afbb437d6d591bd0577f4e0585bc22ffbecad227 100644
--- a/file_contexts
+++ b/file_contexts
@@ -138,7 +138,6 @@
 /dev/watchdog		u:object_r:watchdog_device:s0
 /dev/xt_qtaguid	u:object_r:qtaguid_device:s0
 /dev/zero		u:object_r:zero_device:s0
-/dev/__kmsg__		u:object_r:klog_device:s0
 /dev/__properties__ u:object_r:properties_device:s0
 #############################
 # System files
diff --git a/kernel.te b/kernel.te
index b134cd0f855e616a9b5c10fae518899bab983c72..3b77947092a27e7515d0029801acafb2a0d4cb04 100644
--- a/kernel.te
+++ b/kernel.te
@@ -40,8 +40,7 @@ allow kernel self:capability sys_resource;
 allow kernel self:capability sys_boot;
 allow kernel proc_sysrq:file w_file_perms;
 
-# Allow writing to /dev/__kmsg__ which was created prior to
-# loading policy
+# Allow writing to /dev/kmsg which was created prior to loading policy.
 allow kernel tmpfs:chr_file write;
 
 # Set checkreqprot by init.rc prior to switching to init domain.
diff --git a/ueventd.te b/ueventd.te
index 6a2b993c2e5953e9beed5beb55b3d22d45f763e9..d4880fad140caaba4d85277171870bd82d6cc8b3 100644
--- a/ueventd.te
+++ b/ueventd.te
@@ -3,10 +3,8 @@
 type ueventd, domain, domain_deprecated;
 tmpfs_domain(ueventd)
 
-# TODO: why is ueventd using __kmsg__ when it should just create
-# and use /dev/kmsg instead?
-type_transition ueventd device:chr_file klog_device "__kmsg__";
-allow ueventd klog_device:chr_file { create open write unlink };
+# Write to /dev/kmsg.
+allow ueventd kmsg_device:chr_file rw_file_perms;
 
 allow ueventd self:capability { chown mknod net_admin setgid fsetid sys_rawio dac_override fowner };
 allow ueventd device:file create_file_perms;