diff options
| author | Jiri Kosina <jkosina@suse.cz> | 2011-09-15 15:08:05 +0200 | 
|---|---|---|
| committer | Jiri Kosina <jkosina@suse.cz> | 2011-09-15 15:08:18 +0200 | 
| commit | e060c38434b2caa78efe7cedaff4191040b65a15 (patch) | |
| tree | 407361230bf6733f63d8e788e4b5e6566ee04818 /drivers/spi/spi-pl022.c | |
| parent | 10e4ac572eeffe5317019bd7330b6058a400dfc2 (diff) | |
| parent | cc39c6a9bbdebfcf1a7dee64d83bf302bc38d941 (diff) | |
| download | olio-linux-3.10-e060c38434b2caa78efe7cedaff4191040b65a15.tar.xz olio-linux-3.10-e060c38434b2caa78efe7cedaff4191040b65a15.zip  | |
Merge branch 'master' into for-next
Fast-forward merge with Linus to be able to merge patches
based on more recent version of the tree.
Diffstat (limited to 'drivers/spi/spi-pl022.c')
| -rw-r--r-- | drivers/spi/spi-pl022.c | 11 | 
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/spi/spi-pl022.c b/drivers/spi/spi-pl022.c index eba88c749fb..730b4a37b82 100644 --- a/drivers/spi/spi-pl022.c +++ b/drivers/spi/spi-pl022.c @@ -2267,17 +2267,13 @@ static int __devexit  pl022_remove(struct amba_device *adev)  {  	struct pl022 *pl022 = amba_get_drvdata(adev); -	int status = 0; +  	if (!pl022)  		return 0;  	/* Remove the queue */ -	status = destroy_queue(pl022); -	if (status != 0) { -		dev_err(&adev->dev, -			"queue remove failed (%d)\n", status); -		return status; -	} +	if (destroy_queue(pl022) != 0) +		dev_err(&adev->dev, "queue remove failed\n");  	load_ssp_default_config(pl022);  	pl022_dma_remove(pl022);  	free_irq(adev->irq[0], pl022); @@ -2289,7 +2285,6 @@ pl022_remove(struct amba_device *adev)  	spi_unregister_master(pl022->master);  	spi_master_put(pl022->master);  	amba_set_drvdata(adev, NULL); -	dev_dbg(&adev->dev, "remove succeeded\n");  	return 0;  }  |