Skip to content

Commit

Permalink
drm/asahi: queue: Quieten some debugs
Browse files Browse the repository at this point in the history
Signed-off-by: Asahi Lina <lina@asahilina.net>
  • Loading branch information
asahilina committed Aug 21, 2023
1 parent 4cb2808 commit 9a9a94c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/gpu/drm/asahi/queue/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl sched::JobImpl for QueueJob::ver {

if let Some(sj) = job.sj_vtx.as_ref() {
if let Some(fence) = sj.can_submit() {
dev_info!(
mod_dev_dbg!(
job.dev,
"QueueJob {}: Blocking due to vertex queue full\n",
job.id
Expand All @@ -208,7 +208,7 @@ impl sched::JobImpl for QueueJob::ver {
}
if let Some(sj) = job.sj_frag.as_ref() {
if let Some(fence) = sj.can_submit() {
dev_info!(
mod_dev_dbg!(
job.dev,
"QueueJob {}: Blocking due to fragment queue full\n",
job.id
Expand All @@ -218,7 +218,7 @@ impl sched::JobImpl for QueueJob::ver {
}
if let Some(sj) = job.sj_comp.as_ref() {
if let Some(fence) = sj.can_submit() {
dev_info!(
mod_dev_dbg!(
job.dev,
"QueueJob {}: Blocking due to compute queue full\n",
job.id
Expand Down

0 comments on commit 9a9a94c

Please sign in to comment.