a626d2
--- a/kernel/rh_taint.c	2019-05-25 14:06:27.474558423 -0700
a626d2
+++ b/kernel/rh_taint.c	2019-05-25 14:25:53.471345832 -0700
a626d2
@@ -2,12 +2,12 @@
a626d2
 #include <linux/module.h>
a626d2
 
a626d2
 /*
a626d2
- * The following functions are used by Red Hat to indicate to users that
a626d2
- * hardware and drivers are unsupported, or have limited support in RHEL major
a626d2
+ * The following functions are used by CentOS to indicate to users that
a626d2
+ * hardware and drivers are unsupported, or have limited support in CentOS Linux major
a626d2
  * and minor releases.  These functions output loud warning messages to the end
a626d2
  * user and should be USED WITH CAUTION.
a626d2
  *
a626d2
- * Any use of these functions _MUST_ be documented in the RHEL Release Notes,
a626d2
+ * Any use of these functions _MUST_ be documented in the CentOS Linux Release Notes,
a626d2
  * and have approval of management.
a626d2
  */
a626d2
 
a626d2
@@ -16,15 +16,15 @@
a626d2
  * @msg: Hardware name, class, or type
a626d2
  *
a626d2
  * Called to mark a device, class of devices, or types of devices as not having
a626d2
- * support in any RHEL minor release.  This does not TAINT the kernel.  Red Hat
a626d2
- * will not fix bugs against this hardware in this minor release.  Red Hat may
a626d2
+ * support in any CentOS Linux minor release.  This does not TAINT the kernel. CentOS 
a626d2
+ * will not fix bugs against this hardware in this minor release.  CentOS may
a626d2
  * declare support in a future major or minor update release.  This cannot be
a626d2
  * used to mark drivers unsupported.
a626d2
  */
a626d2
 void mark_hardware_unsupported(const char *msg)
a626d2
 {
a626d2
 	/* Print one single message */
a626d2
-	pr_crit("Warning: %s - this hardware has not undergone testing by Red Hat and might not be certified. Please consult https://hardware.redhat.com for certified hardware.\n", msg);
a626d2
+	pr_crit("Warning: %s - this hardware has not undergone upstream testing. Please consult http://wiki.centos.org/FAQ for more information\n", msg);
a626d2
 }
a626d2
 EXPORT_SYMBOL(mark_hardware_unsupported);
a626d2
 
a626d2
@@ -35,12 +35,12 @@ EXPORT_SYMBOL(mark_hardware_unsupported)
a626d2
  * Called to minimize the support status of a previously supported device in
a626d2
  * a minor release.  This does not TAINT the kernel.  Marking hardware
a626d2
  * deprecated is usually done in conjunction with the hardware vendor.  Future
a626d2
- * RHEL major releases may not include this driver.  Driver updates and fixes
a626d2
+ * CentOS Linux major releases may not include this driver.  Driver updates and fixes
a626d2
  * for this device will be limited to critical issues in future minor releases.
a626d2
  */
a626d2
 void mark_hardware_deprecated(const char *msg)
a626d2
 {
a626d2
-	pr_crit("Warning: %s - this hardware is not recommended for new deployments. It continues to be supported in this RHEL release, but it is likely to be removed in the next major release. Driver updates and fixes for this device will be limited to critical issues. Please contact Red Hat Support or your device's hardware vendor for additional information.\n", msg);
a626d2
+	pr_crit("Warning: %s - this hardware is not recommended for new deployments. It continues to be supported in this CentOS Linux release, but it is likely to be removed in the next major release. Driver updates and fixes for this device will be limited to critical issues. Please contact CentOS Support or your device's hardware vendor for additional information.\n", msg);
a626d2
 }
a626d2
 EXPORT_SYMBOL(mark_hardware_deprecated);
a626d2
 
a626d2
@@ -50,9 +50,9 @@ EXPORT_SYMBOL(mark_hardware_deprecated);
a626d2
  *
a626d2
  * Called to minimize the support status of a new driver.  This does TAINT the
a626d2
  * kernel.  Calling this function indicates that the driver or subsystem has
a626d2
- * had limited testing and is not marked for full support within this RHEL
a626d2
- * minor release.  The next RHEL minor release may contain full support for
a626d2
- * this driver.  Red Hat does not guarantee that bugs reported against this
a626d2
+ * had limited testing and is not marked for full support within this CentOS Linux
a626d2
+ * minor release.  The next CentOS Linux minor release may contain full support for
a626d2
+ * this driver.  CentOS does not guarantee that bugs reported against this
a626d2
  * driver or subsystem will be resolved.
a626d2
  */
a626d2
 void mark_tech_preview(const char *msg, struct module *mod)
a626d2
@@ -81,13 +81,13 @@ EXPORT_SYMBOL(mark_tech_preview);
a626d2
  * mark_driver_unsupported - drivers that we know we don't want to support
a626d2
  * @name: the name of the driver
a626d2
  *
a626d2
- * In some cases Red Hat has chosen to build a driver for internal QE
a626d2
+ * In some cases CentOS has chosen to build a driver for internal QE
a626d2
  * use. Use this function to mark those drivers as unsupported for
a626d2
  * customers.
a626d2
  */
a626d2
 void mark_driver_unsupported(const char *name)
a626d2
 {
a626d2
-	pr_crit("Warning: %s - This driver has not undergone sufficient testing by Red Hat for this release and therefore cannot be used in production systems.\n",
a626d2
+	pr_crit("Warning: %s - This driver has not undergone sufficient testing by CentOS for this release and therefore cannot be used in production systems.\n",
a626d2
 	        name ? name : "kernel");
a626d2
 }
a626d2
 EXPORT_SYMBOL(mark_driver_unsupported);