isimodem: Fix macro to be safer to use

This commit is contained in:
Aki Niemi 2011-04-14 14:33:52 +03:00
parent 6c8f1d059a
commit 5d7b355ca2
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ static inline struct isi_cb_data *isi_cb_data_new(void *user, void *cb,
#define ALIGN4(val) (((val) + 3) & ~3)
#define ISI_16BIT(val) \
(((val) >> 8) & 0xFF), ((val & 0xFF))
(((val) >> 8) & 0xFF), ((val) & 0xFF)
#define ISI_32BIT(val) \
(((val) >> 24) & 0xFF), (((val) >> 16) & 0xFF), \