summaryrefslogtreecommitdiff
path: root/nuttx/arch
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-04-30 08:08:02 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-04-30 08:08:02 -0600
commit4b6733594977f659fea662cfa3721f72c89da367 (patch)
treedeef5972b277e22c678f4a13f5f2c8845f5f1609 /nuttx/arch
parentba6a4a66fda85ebe1162e1ec4d74e09d6bf4991c (diff)
downloadpx4-nuttx-4b6733594977f659fea662cfa3721f72c89da367.tar.gz
px4-nuttx-4b6733594977f659fea662cfa3721f72c89da367.tar.bz2
px4-nuttx-4b6733594977f659fea662cfa3721f72c89da367.zip
LPC17: Interrupts not being re-enabled in the initialization function
Diffstat (limited to 'nuttx/arch')
-rw-r--r--nuttx/arch/arm/src/lpc17xx/lpc17_i2c.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/nuttx/arch/arm/src/lpc17xx/lpc17_i2c.c b/nuttx/arch/arm/src/lpc17xx/lpc17_i2c.c
index 777349def..4c4fdb0b1 100644
--- a/nuttx/arch/arm/src/lpc17xx/lpc17_i2c.c
+++ b/nuttx/arch/arm/src/lpc17xx/lpc17_i2c.c
@@ -9,7 +9,7 @@
*
* Author: David Hewson
*
- * Copyright (C) 2010-2011 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2010-2011, 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -537,6 +537,7 @@ struct i2c_dev_s *up_i2cinitialize(int port)
else
#endif
{
+ irqrestore(flags);
return NULL;
}
@@ -561,6 +562,8 @@ struct i2c_dev_s *up_i2cinitialize(int port)
/* Install our operations */
priv->dev.ops = &lpc17_i2c_ops;
+
+ irqrestore(flags);
return &priv->dev;
}