Skip to content
Snippets Groups Projects
Commit 7b75b990 authored by Denis Vlasenko's avatar Denis Vlasenko Committed by James Bottomley
Browse files

[SCSI] aic7xxx: fix byte I/O order in ahd_inw


Comment says "Read high byte first as some registers increment..."
but code doesn't guarantee that, I think:
	return ((ahd_inb(ahd, port+1) << 8) | ahd_inb(ahd, port));
Compiler can reorder it.

Make the order explicit.

Signed-off-by: default avatarDenis Vlasenko <vda.linux@googlemail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>

Fixed rejections and added aic7xxx code
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 02a0fa67
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment