diff options
author | John Crispin <john@openwrt.org> | 2015-11-24 20:40:59 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-11-24 20:40:59 +0000 |
commit | 5d236c4dd0f83261eebe76499636c676d5e26152 (patch) | |
tree | bc3ac508ac9f3415d5c7f6b4f7a4a95d725c942e /package/kernel/lantiq/ltq-vdsl-mei/patches/010-warnings.patch | |
parent | ca541cffd09340d5f2ee2d95efce079b3a581b29 (diff) | |
download | upstream-5d236c4dd0f83261eebe76499636c676d5e26152.tar.gz upstream-5d236c4dd0f83261eebe76499636c676d5e26152.tar.bz2 upstream-5d236c4dd0f83261eebe76499636c676d5e26152.zip |
lantiq: ltq-vdsl-mei: update to version 1.4.8.5
In addition to the update this also fixes some build warnings and makes it
use the same configure option as used in Lantiq UGW.
Signed-off-by: Hauke Mehrtens <hauke.mehrtens@lantiq.com>
SVN-Revision: 47634
Diffstat (limited to 'package/kernel/lantiq/ltq-vdsl-mei/patches/010-warnings.patch')
-rw-r--r-- | package/kernel/lantiq/ltq-vdsl-mei/patches/010-warnings.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/kernel/lantiq/ltq-vdsl-mei/patches/010-warnings.patch b/package/kernel/lantiq/ltq-vdsl-mei/patches/010-warnings.patch new file mode 100644 index 0000000000..a3c7dfe26d --- /dev/null +++ b/package/kernel/lantiq/ltq-vdsl-mei/patches/010-warnings.patch @@ -0,0 +1,26 @@ +--- a/src/drv_mei_cpe_api.h ++++ b/src/drv_mei_cpe_api.h +@@ -937,7 +937,7 @@ typedef struct MEI_dev_s + #if ( defined(MEI_DRVOS_HAVE_DRV_SELECT) && (MEI_DRVOS_HAVE_DRV_SELECT == 1) ) + /** support for select() */ + IFX_boolean_t bNfcNeedWakeUp; +- MEI_DRVOS_event_t selNfcWakeupList; ++ IFXOS_drvSelectQueue_t selNfcWakeupList; + #endif + + /** list of all open instances which can receive NFC's, EVT's ALM's */ +--- a/src/drv_mei_cpe_linux.c ++++ b/src/drv_mei_cpe_linux.c +@@ -1220,9 +1220,9 @@ static unsigned int MEI_Poll (struct fil + } + + MEI_DRVOS_SelectQueueAddTask( +- (MEI_DRVOS_select_OSArg_t*) filp, +- (MEI_DRVOS_event_t*) &(pMeiDev->selNfcWakeupList), +- (MEI_DRVOS_selectTable_t*) wait); ++ filp, ++ &(pMeiDev->selNfcWakeupList), ++ wait); + + if (pDynNfc->pRecvDataCntrl[pDynNfc->rdIdxRd].bufCtrl != MEI_RECV_BUF_CTRL_FREE) /* buffer in use */ + { |