Replace lost end of at45.c.
diff --git a/drivers/at45.c b/drivers/at45.c
old mode 100644
new mode 100755
index 35c9ecc..4c12ca7
--- a/drivers/at45.c
+++ b/drivers/at45.c
@@ -547,4 +547,18 @@
 	return DATAFLASH_OK;
 }
 
+/*---------------------------------------------------------------------------*/
+/* Function Name       : AT91F_DataflashProbe 				     */
+/* Object              : 						     */
+/* Input Parameters    : 						     */
+/* Return value	       : Dataflash status register			     */
+/*---------------------------------------------------------------------------*/ 
+int AT91F_DataflashProbe(int cs, AT91PS_DataflashDesc pDesc) {
+	AT91F_SpiEnable(cs);
+	AT91F_DataFlashGetStatus(pDesc);
+	return((pDesc->command[1] == 0xFF)? 0: pDesc->command[1] & 0x3C); 
+}
+
+#endif
+