mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-04 05:11:46 +00:00
[PATCH] ppc annotations: i2c-mpc
Usual iomem annotations and NULL noise removal. Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
2c6e759990
commit
7366d36cb9
1 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@
|
||||||
#define CSR_RXAK 0x01
|
#define CSR_RXAK 0x01
|
||||||
|
|
||||||
struct mpc_i2c {
|
struct mpc_i2c {
|
||||||
char *base;
|
void __iomem *base;
|
||||||
u32 interrupt;
|
u32 interrupt;
|
||||||
wait_queue_head_t queue;
|
wait_queue_head_t queue;
|
||||||
struct i2c_adapter adap;
|
struct i2c_adapter adap;
|
||||||
|
@ -444,7 +444,7 @@ static int fsl_i2c_probe(struct device *device)
|
||||||
|
|
||||||
fail_add:
|
fail_add:
|
||||||
if (i2c->irq != 0)
|
if (i2c->irq != 0)
|
||||||
free_irq(i2c->irq, 0);
|
free_irq(i2c->irq, NULL);
|
||||||
fail_irq:
|
fail_irq:
|
||||||
iounmap(i2c->base);
|
iounmap(i2c->base);
|
||||||
fail_map:
|
fail_map:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue