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

Commit abccff1b authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ufs: ufshcd: Prevent sleeping in IRQ context"

parents b1b53d11 925d34df
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@ int ufshcd_dump_regs(struct ufs_hba *hba, size_t offset, size_t len,
	if (offset % 4 != 0 || len % 4 != 0) /* keep readl happy */
		return -EINVAL;

	regs = kzalloc(len, GFP_KERNEL);
	regs = kzalloc(len, GFP_ATOMIC);
	if (!regs)
		return -ENOMEM;

@@ -431,8 +431,6 @@ static void ufshcd_print_host_regs(struct ufs_hba *hba)

	ufshcd_print_clk_freqs(hba);

	if (hba->vops && hba->vops->dbg_register_dump)
		hba->vops->dbg_register_dump(hba);
}

static