From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756403AbYGKTME (ORCPT ); Fri, 11 Jul 2008 15:12:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756489AbYGKTL1 (ORCPT ); Fri, 11 Jul 2008 15:11:27 -0400 Received: from wf-out-1314.google.com ([209.85.200.169]:53008 "EHLO wf-out-1314.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756173AbYGKTLX (ORCPT ); Fri, 11 Jul 2008 15:11:23 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; b=aQGUrgeokkOAAX2G/8sRKE6aN1IDcR2n3AeCVskodEthURlZsZcVmMdDYH0MB2ewtq czNfC8ZB7s99rzbeJ/Xu1BIlKkvqzqriHgHmNUpI3KSL/3ofl3JeUZBAjBCbiG7GZ55a WyyOVGB4s0kYk7ehoOmIhsPWCooYN4+W+ji54= Subject: [PATCH 4/6] byteorder: fix direct byteswap includes From: Harvey Harrison To: Linus Torvalds Cc: Andrew Morton , linux-arch , LKML Content-Type: text/plain Date: Fri, 11 Jul 2008 12:11:13 -0700 Message-Id: <1215803473.15972.23.camel@brick> Mime-Version: 1.0 X-Mailer: Evolution 2.22.2 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The swahb, swahw helpers weren't included from the old byteorder headers, you had to grovel around in the implementation files to get them. The are provided by the new byteorder headers, so just include that. Signed-off-by: Harvey Harrison --- drivers/media/dvb/ttpci/av7110.c | 2 +- drivers/media/video/cx18/cx18-driver.h | 2 +- drivers/media/video/ivtv/ivtv-driver.h | 2 +- drivers/media/video/vpx3220.c | 2 +- kernel/rcupreempt.c | 2 +- tests/rcutorture.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/media/dvb/ttpci/av7110.c b/drivers/media/dvb/ttpci/av7110.c index cd7f4bd..ac0c618 100644 --- a/drivers/media/dvb/ttpci/av7110.c +++ b/drivers/media/dvb/ttpci/av7110.c @@ -36,7 +36,6 @@ #include #include #include -#include #include #include @@ -53,6 +52,7 @@ #include #include +#include #include #include diff --git a/drivers/media/video/cx18/cx18-driver.h b/drivers/media/video/cx18/cx18-driver.h index b421e02..27bb609 100644 --- a/drivers/media/video/cx18/cx18-driver.h +++ b/drivers/media/video/cx18/cx18-driver.h @@ -38,10 +38,10 @@ #include #include #include -#include #include #include #include +#include #include #include diff --git a/drivers/media/video/ivtv/ivtv-driver.h b/drivers/media/video/ivtv/ivtv-driver.h index 9d23b1e..a77804e 100644 --- a/drivers/media/video/ivtv/ivtv-driver.h +++ b/drivers/media/video/ivtv/ivtv-driver.h @@ -49,11 +49,11 @@ #include #include #include -#include #include #include #include #include +#include #include #include diff --git a/drivers/media/video/vpx3220.c b/drivers/media/video/vpx3220.c index 3529302..5920a9e 100644 --- a/drivers/media/video/vpx3220.c +++ b/drivers/media/video/vpx3220.c @@ -24,7 +24,7 @@ #include #include -#include +#include #include #include diff --git a/kernel/rcupreempt.c b/kernel/rcupreempt.c index 2782793..f0289b9 100644 --- a/kernel/rcupreempt.c +++ b/kernel/rcupreempt.c @@ -54,9 +54,9 @@ #include #include #include -#include #include #include +#include /* * Macro that prevents the compiler from reordering accesses, but does diff --git a/tests/rcutorture.c b/tests/rcutorture.c index 90b5b12..85cb905 100644 --- a/tests/rcutorture.c +++ b/tests/rcutorture.c @@ -42,10 +42,10 @@ #include #include #include -#include #include #include #include +#include MODULE_LICENSE("GPL"); MODULE_AUTHOR("Paul E. McKenney and " -- 1.5.6.2.393.g45096