mirror of
https://github.com/torvalds/linux.git
synced 2024-12-01 08:31:37 +00:00
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6: Staging: rt2860sta: prevent a panic when disabling when associated staging: more sched.h fixes Staging: et131x: Fix the add_10bit macro Staging: et131x: Correct WRAP bit handling staging: Complete sched.h removal from interrupt.h Staging: vme: fix sched.h build breakage Staging: poch: fix sched.h build breakage Staging: b3dfg: fix sched.h build breakage Staging: comedi: fix sched.h build breakage Staging: iio: Fix missing include <linux/sched.h>
This commit is contained in:
commit
b25eaebc6c
@ -36,6 +36,7 @@
|
||||
#include <linux/wait.h>
|
||||
#include <linux/mm.h>
|
||||
#include <linux/uaccess.h>
|
||||
#include <linux/sched.h>
|
||||
|
||||
static unsigned int b3dfg_nbuf = 2;
|
||||
|
||||
|
@ -51,6 +51,7 @@ from http://www.comedi.org
|
||||
*/
|
||||
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/sched.h>
|
||||
#include "../comedidev.h"
|
||||
|
||||
#include "comedi_pci.h"
|
||||
|
@ -62,6 +62,7 @@
|
||||
/* #define DEBUG_STATUS_B */
|
||||
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/sched.h>
|
||||
#include "8255.h"
|
||||
#include "mite.h"
|
||||
#include "comedi_fc.h"
|
||||
|
@ -70,6 +70,7 @@ comedi_nonfree_firmware tarball available from http://www.comedi.org
|
||||
/* #define DEBUG_FLAGS */
|
||||
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/sched.h>
|
||||
#include "../comedidev.h"
|
||||
|
||||
#include "mite.h"
|
||||
|
@ -223,7 +223,7 @@ typedef union _TXDMA_PR_NUM_DES_t {
|
||||
|
||||
extern inline void add_10bit(u32 *v, int n)
|
||||
{
|
||||
*v = INDEX10(*v + n);
|
||||
*v = INDEX10(*v + n) | (*v & ET_DMA10_WRAP);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -1177,12 +1177,20 @@ void et131x_handle_recv_interrupt(struct et131x_adapter *etdev)
|
||||
|
||||
static inline u32 bump_fbr(u32 *fbr, u32 limit)
|
||||
{
|
||||
u32 v = *fbr;
|
||||
add_10bit(&v, 1);
|
||||
if (v > limit)
|
||||
v = (*fbr & ~ET_DMA10_MASK) ^ ET_DMA10_WRAP;
|
||||
*fbr = v;
|
||||
return v;
|
||||
u32 v = *fbr;
|
||||
v++;
|
||||
/* This works for all cases where limit < 1024. The 1023 case
|
||||
works because 1023++ is 1024 which means the if condition is not
|
||||
taken but the carry of the bit into the wrap bit toggles the wrap
|
||||
value correctly */
|
||||
if ((v & ET_DMA10_MASK) > limit) {
|
||||
v &= ~ET_DMA10_MASK;
|
||||
v ^= ET_DMA10_WRAP;
|
||||
}
|
||||
/* For the 1023 case */
|
||||
v &= (ET_DMA10_MASK|ET_DMA10_WRAP);
|
||||
*fbr = v;
|
||||
return v;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -30,6 +30,7 @@
|
||||
#include <linux/ioport.h>
|
||||
#include <linux/irq.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/wait.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/workqueue.h>
|
||||
|
@ -18,6 +18,8 @@
|
||||
#include <linux/fs.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/poll.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/wait.h>
|
||||
#include <linux/cdev.h>
|
||||
#include "iio.h"
|
||||
#include "trigger_consumer.h"
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include <linux/init.h>
|
||||
#include <linux/ioctl.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/sched.h>
|
||||
|
||||
#include "poch.h"
|
||||
|
||||
|
@ -363,6 +363,8 @@ int RtmpPCIMgmtKickOut(
|
||||
ULONG SwIdx = pAd->MgmtRing.TxCpuIdx;
|
||||
|
||||
pTxD = (PTXD_STRUC) pAd->MgmtRing.Cell[SwIdx].AllocVa;
|
||||
if (!pTxD)
|
||||
return 0;
|
||||
|
||||
pAd->MgmtRing.Cell[SwIdx].pNdisPacket = pPacket;
|
||||
pAd->MgmtRing.Cell[SwIdx].pNextNdisPacket = NULL;
|
||||
|
@ -25,6 +25,7 @@
|
||||
*************************************************************************
|
||||
*/
|
||||
|
||||
#include <linux/sched.h>
|
||||
#include "../rt_config.h"
|
||||
|
||||
INT Show_SSID_Proc(
|
||||
|
@ -25,6 +25,7 @@
|
||||
*************************************************************************
|
||||
*/
|
||||
|
||||
#include <linux/sched.h>
|
||||
#include "rt_config.h"
|
||||
|
||||
ULONG RTDebugLevel = RT_DEBUG_ERROR;
|
||||
|
@ -34,6 +34,7 @@
|
||||
--------- ---------- ----------------------------------------------
|
||||
*/
|
||||
|
||||
#include <linux/sched.h>
|
||||
#include "../rt_config.h"
|
||||
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
*************************************************************************
|
||||
*/
|
||||
|
||||
#include <linux/sched.h>
|
||||
#include "rt_config.h"
|
||||
|
||||
ULONG RTDebugLevel = RT_DEBUG_ERROR;
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include <linux/mm.h>
|
||||
#include <linux/poll.h>
|
||||
#include <linux/wait.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/firmware.h>
|
||||
#include <asm/ioctl.h>
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include <linux/poll.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/sched.h>
|
||||
#include <asm/time.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/uaccess.h>
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include <linux/dma-mapping.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/sched.h>
|
||||
#include <asm/time.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/uaccess.h>
|
||||
|
Loading…
Reference in New Issue
Block a user