Skip to content

Commit

Permalink
[PATCH] bogus asm/delay.h includes
Browse files Browse the repository at this point in the history
asm/delay.h is non-portable; linux/delay.h should be used in generic code.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Feb 8, 2006
1 parent 1b86235 commit 164006d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/net/wan/pci200syn.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <linux/netdevice.h>
#include <linux/hdlc.h>
#include <linux/pci.h>
#include <asm/delay.h>
#include <linux/delay.h>
#include <asm/io.h>

#include "hd64572.h"
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wan/wanxl.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
#include <linux/hdlc.h>
#include <linux/pci.h>
#include <linux/dma-mapping.h>
#include <linux/delay.h>
#include <asm/io.h>
#include <asm/delay.h>

#include "wanxl.h"

Expand Down
2 changes: 1 addition & 1 deletion drivers/scsi/aacraid/commsup.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
#include <linux/slab.h>
#include <linux/completion.h>
#include <linux/blkdev.h>
#include <linux/delay.h>
#include <scsi/scsi_host.h>
#include <scsi/scsi_device.h>
#include <asm/semaphore.h>
#include <asm/delay.h>

#include "aacraid.h"

Expand Down
2 changes: 1 addition & 1 deletion sound/oss/emu10k1/recmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
**********************************************************************
*/

#include <asm/delay.h>
#include <linux/delay.h>
#include "8010.h"
#include "recmgr.h"

Expand Down

0 comments on commit 164006d

Please sign in to comment.