On Thu, 15 Apr 2010 13:17:59 -0400 Chihau Chau <chihau@xxxxxxxxx> wrote: > From: Chihau Chau <chihau@xxxxxxxxx> > > This fixes some code style issues like: > > - Use #include <linux/io.h> instead of <asm/io.h> and #include > <linux/delay.h> instead of <asm/delay.h> > > - Use "foo *bar" instead of "foo * bar" > > - Add a space after the for or while sentence and before the open > parenthesis '(' > > - Don't use assignments in a if condition > > Signed-off-by: Chihau Chau <chihau@xxxxxxxxx> Looks obviously correct to me. Acked-by: Andres Salomon <dilinger@xxxxxxxxxx> > --- > drivers/crypto/geode-aes.c | 36 ++++++++++++++++++++---------------- > 1 files changed, 20 insertions(+), 16 deletions(-) > > diff --git a/drivers/crypto/geode-aes.c b/drivers/crypto/geode-aes.c > index c7a5a43..09389dd 100644 > --- a/drivers/crypto/geode-aes.c > +++ b/drivers/crypto/geode-aes.c > @@ -15,14 +15,14 @@ > #include <crypto/algapi.h> > #include <crypto/aes.h> > > -#include <asm/io.h> > -#include <asm/delay.h> > +#include <linux/io.h> > +#include <linux/delay.h> > I don't see any delay functions being used anywhere; delay.h can probably just be dropped. -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html