Rehas SachdevaRehas Sachdeva
837b6555535staging: sm750fb: Remove unnecessary parentheses Remove unnecessary parentheses from right side of an assignment. Issue detected by the following Coccinelle semantic patch: @r@ identifier x; expression e1, e2; @@ - x = (e1 << e2); + x = e1 << e2; Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
f3151e00430staging: sm750fb: Use BIT(x) macro Replaces left shift operation (1 << d) by BIT(x) macro. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
cf5d3273672staging: xgifb: Remove unused variable and if statement Setting the variable 'refresh_rate = 60;' has no use to the rest of the function. Hence the if statement setting it and the variable itself can be removed. This was detected using the following Coccinelle semantic patch: @@ type T; identifier i; constant C; @@ ( extern T i; | - T i; <+... when != i - i = C; ...+> ) Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Katie DunneKatie Dunne
3adc4aae0e5staging: speakup: Remove unnecessary parentheses Issue found by checkpatch. Signed-off-by: Katie Dunne <kdunne@mail.ccsf.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David LinDavid Lin
8d904fe50e3staging: greybus: add maintainer for uart and log protocol drivers Add myself as greybus uart and log protocol driver maintainer. Signed-off-by: David Lin <dtwlin@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Chaehyun LimChaehyun Lim
319b78c3c48staging: greybus: uart.c: fix alignment to match open parenthesis Fixes checkpatch.pl warning: CHECK: Alignment should match open parenthesis Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Chaehyun LimChaehyun Lim
26746a36039staging: greybus: uart.c: change 'unsigned' to 'unsigned int' Fixes checkpatch.pl warning: WARNING: Prefer 'unsigned int' to bare use of 'unsigned' Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Richard GrouxRichard Groux
33111574550staging: greybus: audio_codec.c: code indent should use tabs where possible Minor error spotted by checkpatch.pl in greybus code indent should use tabs where possible Signed-off-by: Richard Groux <rgroux@sauron-mordor.net> Reviewed-by: Alex Elder <elder@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Richard GrouxRichard Groux
0c8d9c73e6cstaging: greybus: audio_codec.c: space required before the open brace Minor error spotted by checkpatch.pl in greybus space required before the open brace '{' Signed-off-by: Richard Groux <rgroux@sauron-mordor.net> Reviewed-by: Alex Elder <elder@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Eva Rachel RetuyaEva Rachel Retuya
5a420d15d15staging: greybus: arche-platform: compress return logic into one line Modify return statement to use the value being returned directly instead of assigning it first to 'ret' and returning this variable. Coccinelle semantic patch used: @@ expression e; local idexpression ret; @@ -ret = +return e; -return ret; Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Eva Rachel RetuyaEva Rachel Retuya
4f1cbe2a7b4staging: greybus: audio: delete unnecessary parentheses Eliminate unneeded parentheses around the right hand side of an assignment. Coccinelle semantic patch used: @@ expression e1, e2; identifier v; @@ ( v = (e1 == e2) | v = (e1 != e2) | v = (e1 <= e2) | v = (e1 >= e2) | v = - ( e1 - ) ) Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Eva Rachel RetuyaEva Rachel Retuya
ce35e9be628staging: greybus: camera: simplify NULL test Replace direct comparisons to NULL i.e. 'x == NULL' with '!x' for consistency. Coccinelle semantic patch used: @@ identifier func; expression x; statement Z; @@ x = func(...); if ( ( + ! x - == NULL | + ! - NULL == x ) ) Z Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Andrey ShvetsovAndrey Shvetsov
0540609fe21staging: most: replace MOST_CH_ISOC_AVP with MOST_CH_ISOC This patch replaces the enum value MOST_CH_ISOC_AVP with the more appropriate MOST_CH_ISOC. Signed-off-by: Andrey Shvetsov <andrey.shvetsov@k2l.de> Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Christian GrommChristian Gromm
95f73013ed0staging: most: clean up configuration strings This patch adds the strings 'rx', 'tx' and 'isoc' to the list of accepted identifiers when setting up a channel configuration. To keep consistency it removes the prefix "dir_" from strings returned by the attributes set_direction and available_directions and it removes the suffix "_avp" from the string "isoc_avp" returned by the attributes set_datatype and available_datatypes. Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed...
Andrey ShvetsovAndrey Shvetsov
22ff195b5a4staging: most: core: remove trailing zero from text property This patch removes trailing zeros from the strings returned by the attributes available_datatypes and available_directions. Signed-off-by: Andrey Shvetsov <andrey.shvetsov@k2l.de> Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Christian GrommChristian Gromm
a6f9d846cc0staging: most: make function most_submit_mbo return void Function most_submit_mbo() causes an exception only if either the pointer mbo or mbo->context equals NULL. From the underlying architecture's point of view both cases must _not_ come true and would happen only, if something has tampered with the pointers. This would render runtime code unable to recover anyway. So, instead trying to hide that things are already critically out of control we're better off with a WARN_ON() assertion. Thi...
Juliana RodriguesJuliana Rodrigues
95842bc9fd0staging: wlan-ng: fixed block comment formatting This patch fixes a checkpatch warning in a block comment by adapting it to the community preferred coding style. Signed-off-by: Juliana Rodrigues <juliana.orod@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Juliana RodriguesJuliana Rodrigues
98090a0ba79staging: wlan-ng: fixed alignment not matching This patch fixes a checkpatch warning by moving arguments to the right and aligning them to their open parenthesis. Signed-off-by: Juliana Rodrigues <juliana.orod@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Juliana RodriguesJuliana Rodrigues
72d19e9899astaging: wlan-ng: fixed parenthesis alignment This patch fixes a checkpatch warning by moving arguments to the right and aligning them to the open parenthesis above. Signed-off-by: Juliana Rodrigues <juliana.orod@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Juliana RodriguesJuliana Rodrigues
5f0730fda82staging: wlan-ng: fixed block comment trailing Moved trailing */ to a new line and added * to subsequent lines on a block comment. Signed-off-by: Juliana Rodrigues <juliana.orod@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Vaibhav HiremathVaibhav Hiremath
92b8bd96fc1staging: greybus: add maintainer for greybus platform drivers Add Vaibhav Hiremath as a Maintainer of Greybus platform drivers. Signed-off-by: Vaibhav Hiremath <hvaibhav.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-HartmanGreg Kroah-Hartman
abf095b5c56staging: greybus: fix up camera Kconfig dependancies CONFIG_MEDIA is not a thing, but CONFIG_MEDIA_SUPPORT is, so use that. Reported-by: Valentin Rothberg <valentinrothberg@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David KershnerDavid Kershner
a43bb30b62cstaging: unisys: include: remove unused ULTRA_CHANNELCLI_STRING The inline ULTRA_CHANNELCLI_STRING is not being used so remove it. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <Timothy.Sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David KershnerDavid Kershner
0082b016b59staging: unisys: include: remove unused spar_channel_client_release_os The function spar_channel_client_release_os is not being used so remove it. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <Timothy.Sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David KershnerDavid Kershner
207d14a1aa7staging: unisys: include: remove unused spar_channel_client_acquire_os The function spar_channel_client_acquire_os is not being used so remove it. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <Timothy.Sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David KershnerDavid Kershner
3838925ce22staging: unisys: include: remove unused function pathname_last_n_nodes The function pathname_last_n_nodes is not used, get rid of it. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <Timothy.Sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David KershnerDavid Kershner
d616700e38dstaging: unisys: visorhba: remove prototypes for visorhba_main.c Remove not needed prototypes in visorhba. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <Timothy.Sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David KershnerDavid Kershner
e7b6d8a61e3staging: unisys: visornic: remove poll_for_irq prototype Remove poll_for_irq prototype not needed. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <Timothy.Sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David KershnerDavid Kershner
2e805a9738astaging: unisys: visornic: remove visornic_poll prototype Remove visornic_poll prototype, because it is not needed. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <Timothy.Sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David KershnerDavid Kershner
0543205b7e2staging: unisys: visornic: remove visornic debugfs protoyptes Remove visornic debugfs prototypes, they are not needed. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <Timothy.Sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
David KershnerDavid Kershner
6083c710819staging: unisys: visornic: remove prototypes Remove unneeded prototypes from visornic_main.c Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <Timothy.Sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Vaibhav AgarwalVaibhav Agarwal
926706c59d4staging: greybus: add maintainer for greybus audio protocol driver Add Vaibhav as maintainer of some Greybus Audio protocol drivers. Signed-off-by: Vaibhav Agarwal <vaibhav.sr@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
James SimmonsJames Simmons
1fbf3e5f2dbstaging: lustre: ptlrpc: re-export lustre_swab_lov_mds_md Being over zealous in removing unused EXPORT_SYMBOLs the function lustre_swab_lov_mds_md exports were removed. They need to be exported so this patch restores those EXPORT_SYMBOLS. Same mistake was done when porting to the upstream client. Signed-off-by: James Simmons <uja.ornl@yahoo.com> Reviewed-on: http://review.whamcloud.com/14545 Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6486 Reviewed-by: Dmitry Eremin <dmitry.eremin@i...
Viresh KumarViresh Kumar
5bd163509f6staging: greybus: add Viresh as maintainer of few greybus protocol drivers Add Viresh Kumar as Maintainer of some of the Greybus protocol drivers. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
7c7f2361458staging: rts5208: Remove space after cast Removes unnecessary space after a cast. Issue found by checkpatch. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
eceef9a3f44staging: rts5208: Use BIT(x) macro Replaces left shift operation (1 << x) by BIT(x). Issue found by checkpatch. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
03282179691staging: rts5208: Put constant on right side of comparison Replaces position of constant from left to right side of a comparison. Additionally, modifies logical continuations to be on the previous line and fixes alignment to match open parenthesis. Issues found by checkpatch. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
bd778ef093astaging: rts5208: Fix indentation Fixes indentation by removing unnecessary TAB. Issue found by checkpatch. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
50024433d40staging: rts5208: Add spaces around operators Adds spaces on either side of arithmetic and relational operators like '-', '<' and '*'. Issue found by checkpatch. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
c86bdd474a0staging: rts5208: Remove unnecessary parentheses Removes unnecessary parentheses from an expression of the form &(x). Issue found by checkpatch. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sayli karniksayli karnik
ec9d0754e0cstaging: comedi: Use vma_pages function on vma object instead of explicit computation This patch uses vma_pages function on vma object instead of explicit computation. Signed-off-by: sayli karnik <karniksayli1995@gmail.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Sandhya BankarSandhya Bankar
33d877bb42dStaging: vt6655: baseband: Remove unnecessary space after a cast No space is necessary after a cast. This issue was found by checkpatch. Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Sandhya BankarSandhya Bankar
58d44745254Staging: vt6655: card: Remove unnecessary space after a cast No space is necessary after a cast. This issue was found by checkpatch. Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
f1f5b4303dastaging: sm750fb: Add spaces around '|' Adds spaces on either side of a '|'. Issue found by checkpatch. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
f4353ee3d3astaging: wlan-ng: Remove unnecessary variable usage Instead of storing the return value into a variable and then returning it, we can club the two into a single return statement. This change was made using the following semantic patch by Coccinelle: @@ local idexpression ret; expression e; @@ -ret = +return e; -return ret; Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Eva Rachel RetuyaEva Rachel Retuya
520a28443fbstaging: most: hdm-usb: convert pr_warn() to dev_warn() Replace pr_warn() call with its respective dev_warn() counterpart. Semantic patch used to detect and apply the transformation: @a@ identifier dev; expression E; @@ struct device *dev = E; <+... when != dev == NULL - pr_warn( + dev_warn(dev, ...); ...+> Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Eva Rachel RetuyaEva Rachel Retuya
0ea5f7c6808staging: media: cxd2099: replace printk with dev_info Use dev_info() instead of printk(). Majority of the conversion was done previously on this commit: 011b2aa [media] staging/media: Use dev_ printks in cxd2099/cxd2099.[ch] Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
4b9fd698ac9staging: media: bcm2048: Merge assignment with return Instead of storing the return value into a variable and then returning it, we can club the two into a single return statement. This change was made using the following semantic patch by Coccinelle: @@ local idexpression ret; expression e; @@ -ret = +return e; -return ret; Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rehas SachdevaRehas Sachdeva
4b72aa8af0estaging: media: davinci_vpfe: Merge assignment with return Instead of storing the return value into a variable and then returning it, we can club the two into a single return statement. This change was made using the following semantic patch by Coccinelle: @@ local idexpression ret; expression e; @@ -ret = +return e; -return ret; Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Sandhya BankarSandhya Bankar
5173abfc050Staging: rts5208: Add space around operator. Add space around operator. This patch was found by checkpatch. Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>← PrevNext →require('plugin/commitgraph/network').applyCommits([{id: '837b65555359b8232f54211317a2da28303d9c5a', href: '/projects/YOCTO/repos/linux-wandboard/commits/837b65555359b8232f54211317a2da28303d9c5a',parents: [{ id: 'f3151e0043099bed805cecb7f363331e8c0a0449' }]},{id: 'f3151e0043099bed805cecb7f363331e8c0a0449', href: '/projects/YOCTO/repos/linux-wandboard/commits/f3151e0043099bed805cecb7f363331e8c0a0449',parents: [{ id: 'cf5d32736722a1abf00c432241a5477c09cd4db2' }]},{id: 'cf5d32736722a1abf00c432241a5477c09cd4db2', href: '/projects/YOCTO/repos/linux-wandboard/commits/cf5d32736722a1abf00c432241a5477c09cd4db2',parents: [{ id: '3adc4aae0e597a7cdcb9ed3f99d0933bf9a4aaa6' }]},{id: '3adc4aae0e597a7cdcb9ed3f99d0933bf9a4aaa6', href: '/projects/YOCTO/repos/linux-wandboard/commits/3adc4aae0e597a7cdcb9ed3f99d0933bf9a4aaa6',parents: [{ id: '8d904fe50e3c5bfd8204cf1b8d525baeb3738bba' }]},{id: '8d904fe50e3c5bfd8204cf1b8d525baeb3738bba', href: '/projects/YOCTO/repos/linux-wandboard/commits/8d904fe50e3c5bfd8204cf1b8d525baeb3738bba',parents: [{ id: '319b78c3c4842a6f079bca8950248803fa67b38f' }]},{id: '319b78c3c4842a6f079bca8950248803fa67b38f', href: '/projects/YOCTO/repos/linux-wandboard/commits/319b78c3c4842a6f079bca8950248803fa67b38f',parents: [{ id: '26746a360394158850c494dd89d9d4f2d276b032' }]},{id: '26746a360394158850c494dd89d9d4f2d276b032', href: '/projects/YOCTO/repos/linux-wandboard/commits/26746a360394158850c494dd89d9d4f2d276b032',parents: [{ id: '33111574550b210f4841591a3938283ffdf91d01' }]},{id: '33111574550b210f4841591a3938283ffdf91d01', href: '/projects/YOCTO/repos/linux-wandboard/commits/33111574550b210f4841591a3938283ffdf91d01',parents: [{ id: '0c8d9c73e6c99efdd5f76e5cbfb90e553130e729' }]},{id: '0c8d9c73e6c99efdd5f76e5cbfb90e553130e729', href: '/projects/YOCTO/repos/linux-wandboard/commits/0c8d9c73e6c99efdd5f76e5cbfb90e553130e729',parents: [{ id: '5a420d15d15b0eb46672578baa268675c63962f7' }]},{id: '5a420d15d15b0eb46672578baa268675c63962f7', href: '/projects/YOCTO/repos/linux-wandboard/commits/5a420d15d15b0eb46672578baa268675c63962f7',parents: [{ id: '4f1cbe2a7b4fa50e5ae09e0a564c9dc4101b02fd' }]},{id: '4f1cbe2a7b4fa50e5ae09e0a564c9dc4101b02fd', href: '/projects/YOCTO/repos/linux-wandboard/commits/4f1cbe2a7b4fa50e5ae09e0a564c9dc4101b02fd',parents: [{ id: 'ce35e9be62837d8242472264b511f9c27992adfa' }]},{id: 'ce35e9be62837d8242472264b511f9c27992adfa', href: '/projects/YOCTO/repos/linux-wandboard/commits/ce35e9be62837d8242472264b511f9c27992adfa',parents: [{ id: '0540609fe217c3eed5804bcc095b0c41db5e63b0' }]},{id: '0540609fe217c3eed5804bcc095b0c41db5e63b0', href: '/projects/YOCTO/repos/linux-wandboard/commits/0540609fe217c3eed5804bcc095b0c41db5e63b0',parents: [{ id: '95f73013ed021ef30e787772ecf547c1355c4299' }]},{id: '95f73013ed021ef30e787772ecf547c1355c4299', href: '/projects/YOCTO/repos/linux-wandboard/commits/95f73013ed021ef30e787772ecf547c1355c4299',parents: [{ id: '22ff195b5a42a6935f624bcb995b6d051ee68872' }]},{id: '22ff195b5a42a6935f624bcb995b6d051ee68872', href: '/projects/YOCTO/repos/linux-wandboard/commits/22ff195b5a42a6935f624bcb995b6d051ee68872',parents: [{ id: 'a6f9d846cc0980ef85ba9a2c863cef2f6202ac83' }]},{id: 'a6f9d846cc0980ef85ba9a2c863cef2f6202ac83', href: '/projects/YOCTO/repos/linux-wandboard/commits/a6f9d846cc0980ef85ba9a2c863cef2f6202ac83',parents: [{ id: '95842bc9fd03e51e4fa370c40542e2306d079699' }]},{id: '95842bc9fd03e51e4fa370c40542e2306d079699', href: '/projects/YOCTO/repos/linux-wandboard/commits/95842bc9fd03e51e4fa370c40542e2306d079699',parents: [{ id: '98090a0ba794a96f0bc6703afe16b60b1baa396b' }]},{id: '98090a0ba794a96f0bc6703afe16b60b1baa396b', href: '/projects/YOCTO/repos/linux-wandboard/commits/98090a0ba794a96f0bc6703afe16b60b1baa396b',parents: [{ id: '72d19e9899a9666c46fd0936dd694291bc5e78b9' }]},{id: '72d19e9899a9666c46fd0936dd694291bc5e78b9', href: '/projects/YOCTO/repos/linux-wandboard/commits/72d19e9899a9666c46fd0936dd694291bc5e78b9',parents: [{ id: '5f0730fda824e4a708d5f307e806b0176f86dcd3' }]},{id: '5f0730fda824e4a708d5f307e806b0176f86dcd3', href: '/projects/YOCTO/repos/linux-wandboard/commits/5f0730fda824e4a708d5f307e806b0176f86dcd3',parents: [{ id: '92b8bd96fc1ae9c804526cb79bf289c3f815f3ff' }]},{id: '92b8bd96fc1ae9c804526cb79bf289c3f815f3ff', href: '/projects/YOCTO/repos/linux-wandboard/commits/92b8bd96fc1ae9c804526cb79bf289c3f815f3ff',parents: [{ id: 'abf095b5c567e36800d56c0ea0066b046b2678e1' }]},{id: 'abf095b5c567e36800d56c0ea0066b046b2678e1', href: '/projects/YOCTO/repos/linux-wandboard/commits/abf095b5c567e36800d56c0ea0066b046b2678e1',parents: [{ id: 'a43bb30b62cf6993f1351c3f0d25f048e96052cd' }]},{id: 'a43bb30b62cf6993f1351c3f0d25f048e96052cd', href: '/projects/YOCTO/repos/linux-wandboard/commits/a43bb30b62cf6993f1351c3f0d25f048e96052cd',parents: [{ id: '0082b016b59e67cbbb747166565074f61255da7d' }]},{id: '0082b016b59e67cbbb747166565074f61255da7d', href: '/projects/YOCTO/repos/linux-wandboard/commits/0082b016b59e67cbbb747166565074f61255da7d',parents: [{ id: '207d14a1aa70fd5bafdc3900f431df40c733c8ab' }]},{id: '207d14a1aa70fd5bafdc3900f431df40c733c8ab', href: '/projects/YOCTO/repos/linux-wandboard/commits/207d14a1aa70fd5bafdc3900f431df40c733c8ab',parents: [{ id: '3838925ce22063cb8e2b70311d3163b869bc6592' }]},{id: '3838925ce22063cb8e2b70311d3163b869bc6592', href: '/projects/YOCTO/repos/linux-wandboard/commits/3838925ce22063cb8e2b70311d3163b869bc6592',parents: [{ id: 'd616700e38d91f9ec11d83ccf64d8e038935f26d' }]},{id: 'd616700e38d91f9ec11d83ccf64d8e038935f26d', href: '/projects/YOCTO/repos/linux-wandboard/commits/d616700e38d91f9ec11d83ccf64d8e038935f26d',parents: [{ id: 'e7b6d8a61e3244392f882a31d08eab338cdeb772' }]},{id: 'e7b6d8a61e3244392f882a31d08eab338cdeb772', href: '/projects/YOCTO/repos/linux-wandboard/commits/e7b6d8a61e3244392f882a31d08eab338cdeb772',parents: [{ id: '2e805a9738a0487db1f5b8b6cb41b6c4cd882b63' }]},{id: '2e805a9738a0487db1f5b8b6cb41b6c4cd882b63', href: '/projects/YOCTO/repos/linux-wandboard/commits/2e805a9738a0487db1f5b8b6cb41b6c4cd882b63',parents: [{ id: '0543205b7e216288c7905cedf5ba804f3ee37599' }]},{id: '0543205b7e216288c7905cedf5ba804f3ee37599', href: '/projects/YOCTO/repos/linux-wandboard/commits/0543205b7e216288c7905cedf5ba804f3ee37599',parents: [{ id: '6083c7108193f32da8792fbbce18d80ee4ca75af' }]},{id: '6083c7108193f32da8792fbbce18d80ee4ca75af', href: '/projects/YOCTO/repos/linux-wandboard/commits/6083c7108193f32da8792fbbce18d80ee4ca75af',parents: [{ id: '926706c59d4dbca4289b7aa20a8c47ee1006b1ce' }]},{id: '926706c59d4dbca4289b7aa20a8c47ee1006b1ce', href: '/projects/YOCTO/repos/linux-wandboard/commits/926706c59d4dbca4289b7aa20a8c47ee1006b1ce',parents: [{ id: '1fbf3e5f2db72c04a499f3923e6d2bba6f351344' }]},{id: '1fbf3e5f2db72c04a499f3923e6d2bba6f351344', href: '/projects/YOCTO/repos/linux-wandboard/commits/1fbf3e5f2db72c04a499f3923e6d2bba6f351344',parents: [{ id: '5bd163509f61abadaff23ff8e1badd5c0c150605' }]},{id: '5bd163509f61abadaff23ff8e1badd5c0c150605', href: '/projects/YOCTO/repos/linux-wandboard/commits/5bd163509f61abadaff23ff8e1badd5c0c150605',parents: [{ id: '7c7f23614586c4f48c4e8f4b10b62992fe38de3c' }]},{id: '7c7f23614586c4f48c4e8f4b10b62992fe38de3c', href: '/projects/YOCTO/repos/linux-wandboard/commits/7c7f23614586c4f48c4e8f4b10b62992fe38de3c',parents: [{ id: 'eceef9a3f4459e84f214a83ac4c9905baca73832' }]},{id: 'eceef9a3f4459e84f214a83ac4c9905baca73832', href: '/projects/YOCTO/repos/linux-wandboard/commits/eceef9a3f4459e84f214a83ac4c9905baca73832',parents: [{ id: '03282179691330602ec5ab8223b741864452656c' }]},{id: '03282179691330602ec5ab8223b741864452656c', href: '/projects/YOCTO/repos/linux-wandboard/commits/03282179691330602ec5ab8223b741864452656c',parents: [{ id: 'bd778ef093a7c0356524f99244a19c0d04241339' }]},{id: 'bd778ef093a7c0356524f99244a19c0d04241339', href: '/projects/YOCTO/repos/linux-wandboard/commits/bd778ef093a7c0356524f99244a19c0d04241339',parents: [{ id: '50024433d40f8a152027577a9bba1c45f02fe196' }]},{id: '50024433d40f8a152027577a9bba1c45f02fe196', href: '/projects/YOCTO/repos/linux-wandboard/commits/50024433d40f8a152027577a9bba1c45f02fe196',parents: [{ id: 'c86bdd474a0c7b644fff91e0db069040c6a39926' }]},{id: 'c86bdd474a0c7b644fff91e0db069040c6a39926', href: '/projects/YOCTO/repos/linux-wandboard/commits/c86bdd474a0c7b644fff91e0db069040c6a39926',parents: [{ id: 'ec9d0754e0c64013278fda87d1bd6b8318747abe' }]},{id: 'ec9d0754e0c64013278fda87d1bd6b8318747abe', href: '/projects/YOCTO/repos/linux-wandboard/commits/ec9d0754e0c64013278fda87d1bd6b8318747abe',parents: [{ id: '33d877bb42df3db877677039746a71c93322add2' }]},{id: '33d877bb42df3db877677039746a71c93322add2', href: '/projects/YOCTO/repos/linux-wandboard/commits/33d877bb42df3db877677039746a71c93322add2',parents: [{ id: '58d44745254f30bdc8cd14baf9722e7934495a64' }]},{id: '58d44745254f30bdc8cd14baf9722e7934495a64', href: '/projects/YOCTO/repos/linux-wandboard/commits/58d44745254f30bdc8cd14baf9722e7934495a64',parents: [{ id: 'f1f5b4303daab5c2e2dbb90d047763367cf556ca' }]},{id: 'f1f5b4303daab5c2e2dbb90d047763367cf556ca', href: '/projects/YOCTO/repos/linux-wandboard/commits/f1f5b4303daab5c2e2dbb90d047763367cf556ca',parents: [{ id: 'f4353ee3d3af22641beb99a146ef136f33952e80' }]},{id: 'f4353ee3d3af22641beb99a146ef136f33952e80', href: '/projects/YOCTO/repos/linux-wandboard/commits/f4353ee3d3af22641beb99a146ef136f33952e80',parents: [{ id: '520a28443fb2f28a663053feb4431c0083268d75' }]},{id: '520a28443fb2f28a663053feb4431c0083268d75', href: '/projects/YOCTO/repos/linux-wandboard/commits/520a28443fb2f28a663053feb4431c0083268d75',parents: [{ id: '0ea5f7c6808b4ecfc5b045d9cab81803f27670fb' }]},{id: '0ea5f7c6808b4ecfc5b045d9cab81803f27670fb', href: '/projects/YOCTO/repos/linux-wandboard/commits/0ea5f7c6808b4ecfc5b045d9cab81803f27670fb',parents: [{ id: '4b9fd698ac98fd578818461ccbd79f27139c8ee3' }]},{id: '4b9fd698ac98fd578818461ccbd79f27139c8ee3', href: '/projects/YOCTO/repos/linux-wandboard/commits/4b9fd698ac98fd578818461ccbd79f27139c8ee3',parents: [{ id: '4b72aa8af0eec14486442d0ad7afabdeb9abca91' }]},{id: '4b72aa8af0eec14486442d0ad7afabdeb9abca91', href: '/projects/YOCTO/repos/linux-wandboard/commits/4b72aa8af0eec14486442d0ad7afabdeb9abca91',parents: [{ id: '5173abfc05095da983f16de4c5e2185c7eb1934a' }]},{id: '5173abfc05095da983f16de4c5e2185c7eb1934a', href: '/projects/YOCTO/repos/linux-wandboard/commits/5173abfc05095da983f16de4c5e2185c7eb1934a',parents: [{ id: '8bee668de51b7c5ed59be2696a199a335af3397a' }]}]);