linux-next: manual merge of the suspend tree with the input tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Rafael,

Today's linux-next merge of the suspend tree got a conflict in
drivers/input/serio/serio.c between commits
386d8772980be01b94bd463ea1e745732d7eb502 ("Input: serio - use device core
to create 'id' attribute group") and
ddf1ffbd40c92ff1e58c45fa96d309788f7beb60 ("Input: serio - let device core
tell us if device was registered") from the input tree and commit
f543d6795ccfbd443a042e012a6aea15e4f4c87a ("PM: Allow serio input devices
to suspend/resume asynchronously") from the suspend tree.

I fixed it up (see below) but am not sure it this is the correct fix.  I
can carry this fix as necessary.
-- 
Cheers,
Stephen Rothwell                    sfr@xxxxxxxxxxxxxxxx

diff --cc drivers/input/serio/serio.c
index c3b626e,42970e4..0000000
--- a/drivers/input/serio/serio.c
+++ b/drivers/input/serio/serio.c
@@@ -547,15 -555,22 +547,17 @@@ static void serio_add_port(struct seri
  	}
  
  	list_add_tail(&serio->node, &serio_list);
 +
  	if (serio->start)
  		serio->start(serio);
 +
  	error = device_add(&serio->dev);
  	if (error)
 -		printk(KERN_ERR
 -			"serio: device_add() failed for %s (%s), error: %d\n",
 +		dev_err(&serio->dev,
 +			"device_add() failed for %s (%s), error: %d\n",
  			serio->phys, serio->name, error);
 -	else {
 -		serio->registered = true;
 -		error = sysfs_create_group(&serio->dev.kobj, &serio_id_attr_group);
 -		if (error)
 -			printk(KERN_ERR
 -				"serio: sysfs_create_group() failed for %s (%s), error: %d\n",
 -				serio->phys, serio->name, error);
++	else
+ 		device_enable_async_suspend(&serio->dev, true);
 -	}
  }
  
  /*
--
To unsubscribe from this list: send the line "unsubscribe linux-next" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel]     [Linux USB Development]     [Yosemite News]     [Linux SCSI]

  Powered by Linux