Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 70a3fc76 authored by Chad Dupuis's avatar Chad Dupuis Committed by James Bottomley
Browse files

[SCSI] qla2xxx: Use ql_log* #define's in ql_log() and ql_log_pci().

parent 3256b435
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -2364,13 +2364,13 @@ ql_log(uint32_t level, scsi_qla_host_t *vha, int32_t id, const char *fmt, ...)
	vaf.va = &va;

	switch (level) {
	case 0: /* FATAL LOG */
	case ql_log_fatal: /* FATAL LOG */
		pr_crit("%s%pV", pbuf, &vaf);
		break;
	case 1:
	case ql_log_warn:
		pr_err("%s%pV", pbuf, &vaf);
		break;
	case 2:
	case ql_log_info:
		pr_warn("%s%pV", pbuf, &vaf);
		break;
	default:
@@ -2419,13 +2419,13 @@ ql_log_pci(uint32_t level, struct pci_dev *pdev, int32_t id,
	vaf.va = &va;

	switch (level) {
	case 0: /* FATAL LOG */
	case ql_log_fatal: /* FATAL LOG */
		pr_crit("%s%pV", pbuf, &vaf);
		break;
	case 1:
	case ql_log_warn:
		pr_err("%s%pV", pbuf, &vaf);
		break;
	case 2:
	case ql_log_info:
		pr_warn("%s%pV", pbuf, &vaf);
		break;
	default: