diff options
author | Alan Cox <alan@linux.intel.com> | 2010-06-01 22:52:42 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-08-10 13:47:40 -0700 |
commit | 8a1e803d0148e320b9200a442dfb88f8cbde88e7 (patch) | |
tree | 431694cff4ad1a30f54aeb1bc26dc2f651bfe7bc /include/linux/istallion.h | |
parent | b4eda9cb48eac1b7369ad33e5d015c33b4376431 (diff) | |
download | blackbird-obmc-linux-8a1e803d0148e320b9200a442dfb88f8cbde88e7.tar.gz blackbird-obmc-linux-8a1e803d0148e320b9200a442dfb88f8cbde88e7.zip |
istallion: use bit ops for the board flags
This lets us avoid problems with races on the flag changes
Signed-off-by: Alan Cox <alan@linux.intel.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/istallion.h')
-rw-r--r-- | include/linux/istallion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/istallion.h b/include/linux/istallion.h index 7faca98c7d14..ad700a60c158 100644 --- a/include/linux/istallion.h +++ b/include/linux/istallion.h @@ -86,7 +86,7 @@ struct stlibrd { unsigned long magic; unsigned int brdnr; unsigned int brdtype; - unsigned int state; + unsigned long state; unsigned int nrpanels; unsigned int nrports; unsigned int nrdevs; |