diff --git a/XilinxProcessorIPLib/drivers/canps/src/xcanps.c b/XilinxProcessorIPLib/drivers/canps/src/xcanps.c index c332b1f8..f307332a 100644 --- a/XilinxProcessorIPLib/drivers/canps/src/xcanps.c +++ b/XilinxProcessorIPLib/drivers/canps/src/xcanps.c @@ -1,6 +1,6 @@ /****************************************************************************** * -* Copyright (C) 2010 - 2014 Xilinx, Inc. All rights reserved. +* Copyright (C) 2010 - 2015 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -48,6 +48,7 @@ * 1.00a xd/sv 01/12/10 First release * 1.01a bss 12/27/11 Added the APIs XCanPs_SetTxIntrWatermark and * XCanPs_GetTxIntrWatermark. +* 3.00 kvn 02/13/15 Modified code for MISRA-C:2012 compliance. * * ******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/canps/src/xcanps.h b/XilinxProcessorIPLib/drivers/canps/src/xcanps.h index 38022c0f..2b503290 100644 --- a/XilinxProcessorIPLib/drivers/canps/src/xcanps.h +++ b/XilinxProcessorIPLib/drivers/canps/src/xcanps.h @@ -1,6 +1,6 @@ /****************************************************************************** * -* Copyright (C) 2010 - 2014 Xilinx, Inc. All rights reserved. +* Copyright (C) 2010 - 2015 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -195,7 +195,8 @@ * XCANPS_TXBUF_DW2_OFFSET to XCANPS_TXHPB_DW2_OFFSET * 2.1 adk 23/08/14 Fixed CR:798792 Peripheral test for CANPS IP in * SDK claims a 40kbps baud rate but it's not. -* 3.0 adk 09/12/14 Added support for Zynq Ultrascale Mp. +* 3.0 adk 09/12/14 Added support for Zynq Ultrascale Mp.Also code +* modified for MISRA-C:2012 compliance. * * ******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/canps/src/xcanps_g.c b/XilinxProcessorIPLib/drivers/canps/src/xcanps_g.c index 58f1dfc4..f0863ac7 100644 --- a/XilinxProcessorIPLib/drivers/canps/src/xcanps_g.c +++ b/XilinxProcessorIPLib/drivers/canps/src/xcanps_g.c @@ -1,6 +1,6 @@ /****************************************************************************** * -* Copyright (C) 2010 - 2014 Xilinx, Inc. All rights reserved. +* Copyright (C) 2010 - 2015 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -44,6 +44,7 @@ * ----- ----- -------- ------------------------------------------------------- * 1.00a xd/sv 01/12/10 First release * 2.00 hk 22/01/14 Added check for picking second instance +* 3.00 kvn 02/13/15 Modified code for MISRA-C:2012 compliance. * * ******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/canps/src/xcanps_hw.c b/XilinxProcessorIPLib/drivers/canps/src/xcanps_hw.c index 8760163f..5bc4561c 100644 --- a/XilinxProcessorIPLib/drivers/canps/src/xcanps_hw.c +++ b/XilinxProcessorIPLib/drivers/canps/src/xcanps_hw.c @@ -1,6 +1,6 @@ /****************************************************************************** * -* Copyright (C) 2010 - 2014 Xilinx, Inc. All rights reserved. +* Copyright (C) 2010 - 2015 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -42,6 +42,7 @@ * Ver Who Date Changes * ----- ---- -------- ------------------------------------------------------- * 1.02a adk 08/08/13 First release +* 3.00 kvn 02/13/15 Modified code for MISRA-C:2012 compliance. * * ******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/canps/src/xcanps_hw.h b/XilinxProcessorIPLib/drivers/canps/src/xcanps_hw.h index 67af3fac..f9a231b4 100644 --- a/XilinxProcessorIPLib/drivers/canps/src/xcanps_hw.h +++ b/XilinxProcessorIPLib/drivers/canps/src/xcanps_hw.h @@ -1,6 +1,6 @@ /****************************************************************************** * -* Copyright (C) 2010 - 2014 Xilinx, Inc. All rights reserved. +* Copyright (C) 2010 - 2015 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -56,6 +56,7 @@ * XCANPS_TXBUF_DW1_OFFSET to XCANPS_TXHPB_DW1_OFFSET * XCANPS_TXBUF_DW2_OFFSET to XCANPS_TXHPB_DW2_OFFSET * 1.02a adk 08/08/13 Updated for inclding the function prototype +* 3.00 kvn 02/13/15 Modified code for MISRA-C:2012 compliance. * * ******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/canps/src/xcanps_intr.c b/XilinxProcessorIPLib/drivers/canps/src/xcanps_intr.c index 7cfab8ad..0214ba04 100644 --- a/XilinxProcessorIPLib/drivers/canps/src/xcanps_intr.c +++ b/XilinxProcessorIPLib/drivers/canps/src/xcanps_intr.c @@ -1,6 +1,6 @@ /****************************************************************************** * -* Copyright (C) 2010 - 2014 Xilinx, Inc. All rights reserved. +* Copyright (C) 2010 - 2015 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -42,6 +42,7 @@ * Ver Who Date Changes * ----- ----- -------- ----------------------------------------------- * 1.00a xd/sv 01/12/10 First release +* 3.00 kvn 02/13/15 Modified code for MISRA-C:2012 compliance. * * ******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/canps/src/xcanps_selftest.c b/XilinxProcessorIPLib/drivers/canps/src/xcanps_selftest.c index 47449adf..ed864b8f 100644 --- a/XilinxProcessorIPLib/drivers/canps/src/xcanps_selftest.c +++ b/XilinxProcessorIPLib/drivers/canps/src/xcanps_selftest.c @@ -1,6 +1,6 @@ /****************************************************************************** * -* Copyright (C) 2010 - 2014 Xilinx, Inc. All rights reserved. +* Copyright (C) 2010 - 2015 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -52,6 +52,7 @@ * 1.00a xd/sv 01/12/10 First release * 2.1 adk 23/08/14 Fixed CR:798792 Peripheral test for CANPS IP in * SDK claims a 40kbps baud rate but it's not. +* 3.00 kvn 02/13/15 Modified code for MISRA_C:2012 compliance. * * *****************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/canps/src/xcanps_sinit.c b/XilinxProcessorIPLib/drivers/canps/src/xcanps_sinit.c index b97dbc37..85779eea 100644 --- a/XilinxProcessorIPLib/drivers/canps/src/xcanps_sinit.c +++ b/XilinxProcessorIPLib/drivers/canps/src/xcanps_sinit.c @@ -1,6 +1,6 @@ /****************************************************************************** * -* Copyright (C) 2010 - 2014 Xilinx, Inc. All rights reserved. +* Copyright (C) 2010 - 2015 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -46,7 +46,7 @@ * Ver Who Date Changes * ----- ----- -------- ----------------------------------------------- * 1.00a xd/sv 01/12/10 First release -* +* 3.00 kvn 02/13/15 Modified code for MISRA-C:2012 compliance. * * *